forked from Ignitus/Ignitus-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.51 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ignitus-client-side-development",
"version": "5.0.0",
"private": true,
"engines": {
"node": "8.16.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Ignitus/Ignitus-Client-Side-Development"
},
"license": "MIT",
"description": "Ignitus-Client",
"homepage": "https://www.ignitus.org",
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@sentry/browser": "^5.10.1",
"@types/react": "16.9.23",
"axios": "^0.18.0",
"bootstrap": "^4.3.1",
"codecov": "^3.3.0",
"font-awesome": "^4.7.0",
"idb": "^4.0.3",
"jquery": "^3.3.1",
"node-sass": "^4.13.1",
"popper.js": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-alerts-component": "^1.1.0",
"react-dom": "^16.8.6",
"react-loadable": "^5.5.0",
"react-redux": "^7.0.2",
"react-router-dom": "^4.4.0-beta.6",
"react-router-hash-link": "^1.2.0",
"react-scripts": "^3.2.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"reselect": "^4.0.0",
"typescript": "^3.1.6"
},
"scripts": {
"start": "react-scripts start",
"heroku-postbuild": "react-scripts build",
"build": "npm run heroku-postbuild && sw-precache --config=sw-precache-config.js",
"lint": "eslint ./src",
"test": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject",
"test:update": "npm test --updateSnapshot",
"docz:dev": "docz dev",
"docz:build": "docz build"
},
"devDependencies": {
"@types/eslint": "^6.1.8",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@types/react-dom": "^16.8.2",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "5.1.3",
"@types/redux-logger": "3.0.7",
"docz": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.0.0-rc.13",
"istanbul": "^1.0.0-alpha.2",
"jest-cli": "^24.7.1",
"jest-localstorage-mock": "^2.2.0",
"prettier": "1.17.0",
"sw-precache": "^5.2.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"coverageReporters": [
"json",
"html"
]
},
"husky": {
"hooks": {
"pre-commit": "CI=true react-scripts test"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}