-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.22 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"proxy": {
"/api/*": {
"target": "http://localhost:5000"
}
},
"standard": {
"globals": [
"$",
"jQuery",
"fetch"
],
"ignore": [
"node_modules/**"
],
"parser": "babel-eslint",
"envs": [
"jest",
"mocha",
"node"
]
},
"dependencies": {
"axios": "^0.17.1",
"bulma": "^0.6.2",
"moment": "^2.20.1",
"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-scripts-cssmodules": "^1.0.171",
"redux": "^3.7.2",
"redux-form": "^7.2.0",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "NODE_PATH=src react-scripts start",
"build": "NODE_PATH=src react-scripts build",
"test": "NODE_PATH=src react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "standard",
"lint-fix": "standard --fix"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest-enzyme": "^4.0.2",
"moxios": "^0.4.0",
"react-test-renderer": "^16.2.0",
"redux-mock-store": "^1.4.0",
"standard": "^10.0.3"
}
}