-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mybiomarkers-portal",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.1.3",
"history": "^4.7.2",
"hoist-non-react-statics": "^3.0.1",
"immutable": "^3.8.2",
"invariant": "^2.2.4",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"popper.js": "^1.14.4",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-app-polyfill": "^0.1.3",
"react-composer": "^5.0.1",
"react-dom": "^16.5.2",
"react-intl": "^2.7.1",
"react-redux": "^5.0.7",
"react-router-redux": "^4.0.8",
"react-scripts": "2.0.4",
"reactstrap": "^6.5.0",
"redux": "^4.0.0",
"redux-immutable": "^4.0.0",
"redux-persist-immutable": "^4.3.1",
"redux-saga": "^0.16.2",
"reselect": "^4.0.0",
"styled-components": "^3.4.10"
},
"devDependencies": {
"env-cmd": "^8.0.2",
"http-proxy-middleware": "^0.19.0",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"node-sass": "^4.9.3",
"prettier": "^1.14.3",
"react-intl-cra": "^0.3.3",
"react-intl-translations-manager": "^5.0.3",
"source-map-explorer": "^1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "react-scripts start",
"build": "react-scripts build",
"build:staging": "env-cmd .env.staging npm run build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"extract:messages": "react-intl-cra 'src/**/*.{js,jsx}' -o 'src/i18n/messages/messages.json'",
"manage:translations": "node ./translationRunner.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}