-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
58 lines (58 loc) · 1.89 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pwa_repo",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"chromedriver": "^2.27.3",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"file-loader": "^0.10.1",
"flow-bin": "^0.39.0",
"flowtype-loader": "^0.2.2",
"html-webpack-plugin": "^2.28.0",
"ignore-styles": "^5.0.1",
"image-webpack-loader": "^3.2.0",
"mocha": "^3.2.0",
"nightwatch": "^0.9.12",
"node-sass": "^4.5.0",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "0.9.0",
"sass-loader": "^6.0.1",
"selenium-server-standalone-jar": "3.1.0",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"sw-precache-webpack-plugin": "^0.9.0",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"webpack": "^2.2.1",
"offline-plugin": "^4.6.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2"
},
"scripts": {
"server": "cross-env NODE_ENV=development webpack-dev-server --port 2000 --open --inline --hot --content-base public",
"server:quiet": "NODE_ENV=development webpack-dev-server --port 2000 --quiet --no-info --content-base public",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "mocha \"src/**/*.spec.jsx\"",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"nightwatch": "npm run build && ./bin/boot-nightwatch.sh"
}
}