forked from integrating-magic/js-dev-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 729 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "js-dev-env",
"version": "2.1.0",
"author": "jeremy@integratingmagic.io",
"license": "MIT",
"description": "a generic development environment for developing JS in FileMaker",
"scripts": {
"start": "parcel index.html --no-source-maps",
"build": "parcel build index.html",
"upload": "node ./scripts/upload",
"deploy-to-fm": "npm run build && npm run upload",
"openfile": "node ./scripts/openFileOnServer",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"open": "^8.2.1",
"parcel": "^2.8.1",
"prettier": "2.6.2"
}
}