-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"private": true,
"engines": {
"node": ">=5.0 <6",
"npm": ">=3.3 <4"
},
"scripts": {
"lint": "eslint app",
"csslint": "csscomb app --lint --verbose",
"csscomb": "csscomb app --verbose",
"build": "rm -rf dist && webpack && cp app.yaml dist",
"dev": "npm start",
"start": "webpack-dev-server --devtool eval-source-map --progress --colors --hot",
"deploy": "gcloud preview app deploy --project sprotaheimur-aranja dist/app.yaml",
"build-deploy": "NODE_ENV=production npm run build && npm run deploy"
},
"dependencies": {
"babel-polyfill": "^6.6.1",
"babel-runtime": "^6.6.1",
"classnames": "^2.2.3",
"fastclick": "1.0.6",
"history": "^1.17.0",
"lodash": "^4.5.1",
"normalize.css": "^3.0.3",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-pure-render": "^1.0.2",
"react-redux": "^4.0.6",
"react-router": "^2.0.0-rc5",
"react-router-redux": "^2.1.0",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^1.0.3",
"seamless-immutable": "^5.0.1",
"whatwg-fetch": "0.11.0"
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-cli": "^6.6.5",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.5.2",
"css-loader": "^0.23.1",
"csscomb": "^3.1.8",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"eslint-plugin-react": "^3.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.7.0",
"imports-loader": "^0.6.5",
"postcss": "^5.0.19",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.8.1",
"postcss-scss": "^0.1.7",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.10",
"webpack-dev-server": "^1.14.0"
}
}