-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.84 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": "ElementsBattle",
"version": "0.0.1",
"private": true,
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server -d --history-api-fallback --hot --display-error-details --inline --progress --profile --colors --port 3000 --host 0.0.0.0",
"build": "NODE_ENV=production webpack --progress --colors"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.22.0",
"classnames": "^2.2.5",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.26.0",
"json-loader": "^0.5.4",
"optimize-js-plugin": "0.0.4",
"postcss-cssnext": "^2.9.0",
"postcss-inline-svg": "^2.3.0",
"postcss-loader": "^1.2.2",
"precss": "^1.4.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^1.3.1",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-actions": "^1.2.0",
"rucksack-css": "^0.9.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.15.0"
},
"dependencies": {
"i18next": "^7.0.0",
"i18next-browser-languagedetector": "^1.0.1",
"i18next-intervalplural-postprocessor": "^1.0.0",
"ilyabirman-likely": "^2.2.1",
"normalize.css": "^5.0.0",
"postcss-import": "^9.1.0",
"ramda": "^0.23.0",
"react-i18next": "^2.1.0"
}
}