-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
100 lines (100 loc) · 2.89 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
98
99
100
{
"name": "tacticusplanner",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.12.0"
},
"dependencies": {
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.4",
"@nivo/line": "^0.87.0",
"ag-grid-community": "^31.1.1",
"ag-grid-react": "^31.1.1",
"axios": "^1.5.0",
"darkreader": "^4.9.86",
"i18next": "^23.12.3",
"lodash": "^4.17.21",
"material-ui-popup-state": "^5.0.9",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.1",
"react-medium-image-zoom": "^5.2.4",
"react-quill": "^2.0.0",
"react-router-dom": "^6.15.0",
"read-excel-file": "^5.7.1",
"sass": "^1.69.5",
"typescript": "^4.9.5",
"usehooks-ts": "^3.1.0",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.197",
"@types/node": "^16.18.40",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@vitejs/plugin-react": "^4.2.1",
"browserslist-to-esbuild": "^2.1.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^5.0.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"vite": "^4.5.1",
"vite-bundle-visualizer": "^1.0.0",
"vite-tsconfig-paths": "^4.2.3"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"build-dev": "tsc && vite build --mode staging",
"build-ci": "npm run format-ci && npm run lint-ci && npm run build && npm run test",
"build-dev-ci": "npm run format-ci && npm run lint-ci && npm run build-dev && npm run test",
"test": "jest",
"analyze": "vite-bundle-visualizer -c ./vite.config.mts",
"preview": "vite preview",
"lint-ci": "eslint --ext .ts,.tsx --ignore-path .gitignore --quiet src",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore --quiet --fix src",
"format": "prettier src --write",
"format-ci": "prettier src --check",
"predeploy": "npm run build",
"deploy": "gh-pages -b gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"src/**/*.{ts,tsx,css,scss,json}": [
"prettier --write"
],
"src/**/*.{ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}