-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathpackage.json
97 lines (97 loc) · 2.66 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
97
{
"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",
"axios": "^0.18.0",
"idb": "^4.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.2",
"react-router-dom": "^4.4.0-beta.6",
"react-scripts": "^3.2.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"reselect": "^4.0.0"
},
"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 --ext .ts,.tsx --cache",
"lint:fix": "eslint ./src --ext .ts,.tsx --fix",
"test": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject",
"test:update": "npm test --updateSnapshot",
"ci": "CI=true react-scripts test && npm run lint"
},
"devDependencies": {
"@types/eslint": "^6.1.8",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@types/react": "16.9.23",
"@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",
"@typescript-eslint/eslint-plugin": "2.29.0",
"@typescript-eslint/parser": "2.29.0",
"codecov": "^3.3.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "3.4.4",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-airbnb-typescript": "7.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"husky": "^1.0.0-rc.13",
"istanbul": "^1.0.0-alpha.2",
"jest-cli": "^24.7.1",
"jest-emotion": "10.0.32",
"jest-localstorage-mock": "^2.2.0",
"prettier": "1.17.0",
"sw-precache": "^5.2.1",
"typescript": "^3.1.6"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"coverageReporters": [
"json",
"html"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run ci"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}