generated from proofgeist/js-dev-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 829 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "js-dev-environment",
"version": "1.0.0",
"description": "a generic development enviornment for developing JS in FileMaker",
"main": "index.html",
"scripts": {
"start": "parcel public/index.html --no-source-maps",
"build": "parcel build public/index.html -d dist --no-source-maps",
"upload": "node ./scripts/upload",
"build:upload": "npm run build && npm run upload",
"openfile": "node ./scripts/openFileOnServer",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.0.2",
"fm-webviewer-fetch": "^1.1.0",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"open": "^8.2.1",
"parcel-bundler": "^1.9.4",
"parcel-plugin-inliner": "^1.0.16"
}
}