-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "capstone-planning",
"version": "1.0.0",
"description": "## Project Description ",
"main": "webpack.config.js",
"scripts": {
"lint": "eslint src/** src/**/**; exit 0",
"lint-fix": "eslint src/** src/**/** --fix; exit 0",
"test": "jest; exit 0",
"start": "webpack-dev-server"
},
"author": "",
"license": "ISC",
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-jsx": "^1.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.0.0",
"redux": "^3.7.2",
"styled-jsx": "^2.2.5",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.18.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"react-hot-loader": "^3.0.0-beta.7",
"url-loader": "^0.6.2",
"webpack": "^3.4.0",
"webpack-dev-server": "^2.5.0"
}
}