-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 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
{
"name": "AAG-Visualizer",
"version": "1.0.0",
"description": "Visulize AAG",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"watch": "webpack --config webpack.config.dev.js --watch",
"prod": "webpack --config webpack.config.prod.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged"
},
"author": "Byron Hsu",
"license": "MIT",
"dependencies": {
"express": "^4.16.2",
"viz.js": "^1.8.0"
},
"devDependencies": {
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.23.1",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.5.0",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"node-sass": "^4.5.3",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}