-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.88 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.88 KB
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
{
"name": "score-scout",
"dependencies": {
"@ijl/cli": "^5.0.3",
"@reduxjs/toolkit": "^1.9.7",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@types/webpack-env": "^1.18.4",
"axios": "^1.6.2",
"express": "^4.18.2",
"react": "^18.2.0",
"react-cookie": "^6.1.1",
"react-csv-reader": "^4.0.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.18.0",
"react-select": "^5.8.0",
"react-toastify": "^9.1.3",
"styled-components": "^6.1.0",
"styled-media-query": "^2.1.2",
"testing-library": "^0.0.2",
"universal-cookie": "^6.1.1"
},
"main": "./src/index.tsx",
"scripts": {
"start": "ijl-cli server --port=8099 --with-open-browser",
"build": "npm run clean && ijl-cli build --dev",
"build:prod": "npm run clean && ijl-cli build",
"clean": "rimraf dist",
"lint": "eslint --ext js,jsx,ts,tsx src/",
"check": "npm run lint && npm run check-format",
"check-format": "prettier --check src/",
"format": "npx prettier -w src/",
"test": "jest"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"version": "1.0.2"
}