-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"private": true,
"scripts": {
"deploy": "npm run build && surge ./public --domain tic-tac-toe.ryanvurva.surge.sh",
"start": "webpack-dev-server",
"build": "rm -rf public && NODE_ENV=production webpack --optimize-minimize --progress --profile --colors"
},
"dependencies": {
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"css-loader": "^0.28.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"surge": "^0.19.0",
"webpack": "^1",
"webpack-dev-server": "^1",
"webpack-merge": "^4.1.0",
"webpack-validator": "^3.0.0"
}
}