-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "space-traders-react-client",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "webpack",
"test": "jest --coverage",
"lint": "npx eslint \"./src/**/*.js\" \"./src/**/*.jsx\" \"./*.js\"",
"token": "node ./token.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.2",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-toastify": "^8.2.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@swc/core": "^1.2.159",
"@swc/jest": "^0.2.20",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"css-loader": "^6.7.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"style-loader": "^3.3.1",
"swc-loader": "^0.1.15",
"webpack-cli": "^4.9.2"
}
}