-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "react-help-queue",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"lint": "eslint src/** src/**/**; exit 0",
"lintfix": "eslint src/** src/**/** --fix; exit 0",
"test": "jest; exit 0"
},
"author": "",
"license": "ISC",
"dependencies": {
"firebase": "^3.0.0",
"moment": "^2.22.2",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.6",
"react-router-dom": "^4.0.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"styled-jsx": "^3.1.0",
"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.13.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"prop-types": "^15.6.2",
"react-hot-loader": "^4.3.12",
"webpack": "^3.4.0",
"webpack-dev-server": "^2.5.0"
}
}