generated from integrating-magic/charting-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 876 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
27
28
{
"name": "js-dev-environment",
"version": "2.0.0",
"author": "[email protected]",
"license": "ISC",
"description": "a generic development enviornment for developing JS in FileMaker",
"scripts": {
"start": "parcel index.html --no-source-maps",
"browserslist": "> 0.5%, last 2 versions, not dead",
"build": "parcel build index.html",
"upload": "node ./scripts/upload",
"build:upload": "npm run build && npm run upload",
"deploy-to-fm": "npm run build && npm run upload",
"openfile": "node ./scripts/openFileOnServer",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"open": "^8.2.1",
"parcel": "^2.8.2",
"prettier": "2.6.2"
},
"dependencies": {
"apexcharts": "^3.35.3",
"html2canvas": "^1.4.1"
}
}