-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.55 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
{
"name": "safetygps-front",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && node ./node_modules/vite/bin/vite.js build",
"preview": "node ./node_modules/vite/bin/vite.js preview",
"lint": "eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"fix": "npm run lint:fix",
"fix:build": "npm run lint:fix && npm run build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "npm run typecheck",
"test:e2e": "npm run build && node scripts/smoke-test.js",
"setup-env": "node scripts/setup-env.js",
"postinstall": "node scripts/setup-env.js"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@vanilla-extract/css": "^1.17.4",
"antd": "^5.28.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^22.7.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vanilla-extract/vite-plugin": "^4.0.20",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^16.5.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.8"
}
}