-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.55 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.55 KB
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
73
74
75
76
77
78
79
80
{
"name": "react-spa-template",
"version": "1.0.2",
"description": "A SPA project template for react with webpack",
"main": "index.js",
"scripts": {
"eslint": "eslint . --quiet",
"start": "cross-env NODE_ENV=development node ./scripts/dev.js",
"dll": "cross-env NODE_ENV=development webpack --config ./scripts/webpack.dll.config.js"
},
"pre-commit": [
"eslint"
],
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-import": "^1.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"babel-runtime": "^6.23.0",
"classnames": "^2.2.5",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-config-vanadis": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"fetch-mock": "^5.9.4",
"file-loader": "^0.11.1",
"happypack": "^3.0.3",
"html-webpack-plugin": "^2.28.0",
"i18n": "^0.8.3",
"ip": "^1.1.5",
"js-cookie": "^2.1.4",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"lodash.noop": "^3.0.1",
"log-update": "^1.0.2",
"numeral": "^2.0.6",
"open": "^0.0.5",
"postcss": "^5.2.16",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"pre-commit": "^1.2.2",
"precss": "^1.4.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "3.0.0-beta.6",
"react-redux": "^5.0.4",
"react-router": "3.0.5",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-devtools": "^3.3.2",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-module-hot-accept": "^1.0.5",
"whatwg-fetch": "^2.0.3"
},
"browserslist": [
"> 1%",
"ie 9"
],
"dependencies": {}
}