This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
{
"name": "react-redux-parse-starter-kit",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV='production' webpack --progress --profile --colors --config webpack.config.production.js",
"analyze": "webpack --json | analyze-bundle-size",
"watch": "webpack-dev-server --content-base www/ --hot --inline --progress --colors",
"test": "BABEL_JEST_STAGE=0 jest",
"lint": "eslint --ext .js --ext .jsx src"
},
"author": "Maxim Potapov",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.3.14",
"babel-runtime": "^6.3.19",
"history": "~1.13.0",
"parse": "^1.6.8",
"react": "^0.14.1",
"react-addons-create-fragment": "^0.14.1",
"react-addons-pure-render-mixin": "^0.14.1",
"react-addons-transition-group": "^0.14.1",
"react-addons-update": "^0.14.1",
"react-dom": "^0.14.1",
"react-redux": "^4.0.0",
"react-router": "^1.0.0",
"react-tap-event-plugin": "^0.2.1",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^4.1.3",
"babel-jest": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.21.0",
"eslint": "^1.8.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.6.3",
"jest-cli": "^0.8.2",
"react-addons-test-utils": "^0.14.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-bundle-size-analyzer": "^1.1.0",
"webpack-dev-server": "^1.12.1"
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"unmockedModulePathPatterns": [
"node_modules/react",
"node_modules/react-dom",
"node_modules/react-addons-test-utils",
"node_modules/fbjs"
]
}
}