-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (57 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (57 loc) · 1.67 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
{
"name": "react-redux-practice",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "babel-node devServer.js",
"eslint": "eslint ./",
"clean": "rm -rf output/assets",
"build": "npm run clean && webpack --config ./webpack.config.babel.js",
"build:prod": "NODE_ENV=production npm run build"
},
"author": "Ryan Hsu",
"license": "ISC",
"jest": {
"collectCoverage": true,
"testResultsProcessor": "./node_modules/jest-html-reporter",
"setupTestFrameworkScriptFile": "./setup-jasmine-env.js",
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-addons-test-utils",
"./node_modules/jasmine-reporters"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.5",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"eslint": "^3.19.0",
"eslint-plugin-jest": "^19.0.1",
"i18next": "^7.1.3",
"i18next-xhr-backend": "^1.4.1",
"jasmine-reporters": "^2.2.1",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"jest-html-reporter": "^0.1.0",
"react-i18next": "^2.2.1",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-observable": "^0.14.1",
"rxjs": "^5.4.0",
"whatwg-fetch": "^2.0.2"
},
"dependencies": {
}
}