-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "DaltonTab",
"scripts": {
"lint": "eslint --ext js,jsx .",
"lint:fix": "eslint --ext js,jsx . --fix",
"dev-firefox": "cross-env BROWSER=firefox webpack --watch",
"dev-chrome": "cross-env BROWSER=chrome webpack --watch",
"dev-edge": "cross-env BROWSER=edge webpack --watch",
"prod-firefox": "cross-env NODE_ENV=production BROWSER=firefox webpack",
"prod-chrome": "cross-env NODE_ENV=production BROWSER=chrome webpack",
"prod-edge": "cross-env NODE_ENV=production BROWSER=edge webpack"
},
"devDependencies": {
"buble": "^0.18.0",
"buble-loader": "^0.4.1",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.8",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"style-loader": "^0.19.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"font-awesome": "^4.7.0",
"linkstate": "^1.1.0",
"moment": "^2.20.1",
"preact": "^10.4.8",
"react": "github:preact-compat/react",
"react-dom": "github:preact-compat/react-dom",
"react-scrollchor": "^6.0.0"
}
}