-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.08 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "elea",
"scripts": {
"start": "parcel static/index.html",
"build": "parcel build static/index.html",
"lint": "eslint \"static/scripts/**\"",
"prettier": "prettier **/*.js **/*.html **/*.css --write",
"prepare": "husky install"
},
"dependencies": {
"blockly": "^6.20210701.0",
"bootstrap": "^5.3.2",
"chart.js": "^3.8.0",
"d3": "^7.8.5",
"jquery": "^3.7.1",
"js-beautify": "^1.14.9",
"js-cookie": "^3.0.5",
"prismjs": "^1.29.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^7.0.4",
"parcel": "^1.12.3",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier-eslint": "^13.0.0",
"pretty-quick": "^3.1.3"
},
"staticFiles": {
"staticPath": [
{
"staticOutDir": "examples",
"staticPath": "static/examples"
},
{
"staticOutDir": "export",
"staticPath": "static/export"
},
{
"staticOutDir": "scripts",
"staticPath": "static/scripts"
}
]
}
}