forked from phiresky/convolution-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 723 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 723 Bytes
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
{
"dependencies": {
"@types/jquery": "^3.3.4",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"bootstrap": "3",
"husky": "^1.0.0-rc.13",
"jquery": "^3.3.1",
"jspm": "^0.16.33",
"jsxgraph": "^0.99.7",
"lint-staged": "^7.2.0",
"parcel": "^1.9.6",
"popper.js": "^1.14.3",
"prettier": "^1.13.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"tslib": "^1.9.3",
"typescript": "^3.0.0-rc"
},
"scripts": {
"dev": "parcel index.html",
"build": "parcel build index.html --public-url . && cp screenshot.png dist/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,less,scss,js,ts,tsx,json}": [
"prettier --write",
"git add"
]
}
}