-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.95 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
{
"name": "mafia",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"howler": "^2.2.1",
"i18next": "^19.9.0",
"i18next-browser-languagedetector": "^6.0.1",
"immer": "^8.0.1",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.8.8",
"react-ios-switch": "^0.1.19",
"react-redux": "^7.2.2",
"react-scripts": "4.0.3",
"react-spinners": "^0.10.6",
"reactstrap": "^8.9.0",
"redux": "^4.0.5",
"styled-components": "^5.2.1",
"typescript": "^4.2.2",
"use-sound": "^2.0.1",
"use-timer": "^2.0.1",
"web-vitals": "^1.1.0"
},
"scripts": {
"start": "./docker-scripts.sh",
"start:react": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"coverage": "react-scripts test --coverage --watchAll=false",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"fix": "yarn lint --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/howler": "^2.2.1",
"@types/lodash": "^4.14.168",
"@types/react-redux": "^7.1.16",
"@types/styled-components": "^5.1.7",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-prettier": "^3.3.1",
"jest-localstorage-mock": "^2.4.7",
"jest-styled-components": "^7.0.3",
"prettier": "^2.2.1"
}
}