-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "code-annotation",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "3",
"diff2html": "^2.3.3",
"less": "^2.7.3",
"react": "^16.2.0",
"react-app-rewire-less": "^2.1.0",
"react-app-rewired": "^1.4.0",
"react-bootstrap": "^0.32.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.6",
"react-scripts": "1.0.17",
"react-split-pane": "^0.1.74",
"react-toggle": "^4.0.2",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-little-router": "^14.2.3",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.6.1",
"eslint-plugin-prettier": "^2.4.0",
"jest-fetch-mock": "^1.4.0",
"node-localstorage": "^1.3.0",
"prettier": "^1.10.1",
"redux-mock-store": "^1.4.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"lint": "eslint 'src/**/*.js' && prettier -l 'src/**/*.js'",
"eject": "react-scripts eject"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}