forked from djtsai/react-starter-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "react-starter-project",
"version": "0.0.0",
"description": "Starter React project that uses webpack, react-router, and redux.",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"build": "webpack -p",
"test": "jest --config jest-config.json",
"lint": "eslint src tests --ext .js,.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djtsai/react-starter-project.git"
},
"engines": {
"node": "^8.4.0",
"npm": "^5.3.0"
},
"author": "Daniel Tsai <[email protected]>",
"license": "ISC",
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-toastify": "^3.0.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"superagent": "^3.8.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.34",
"@babel/preset-env": "^7.0.0-beta.34",
"@babel/preset-react": "^7.0.0-beta.34",
"@babel/preset-stage-2": "^7.0.0-beta.34",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-loader": "^8.0.0-beta.0",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^21.2.1",
"nock": "^9.1.4",
"node-sass": "^4.7.2",
"raf": "^3.4.0",
"redux-mock-store": "^1.3.0",
"sass-loader": "^6.0.6",
"superagent-mock": "^3.6.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
}
}