-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "taxi-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"test:e2e:update:screenshots": "npx playwright test --update-snapshots",
"test": "npx vitest",
"test:ci": "npx vitest run",
"lint:ts": "npx eslint",
"lint:ts:fix": "npx eslint --fix",
"lint:css": "npx stylelint \"**/*.css\"",
"lint:css:fix": "npx stylelint \"**/*.css\" --fix"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.5",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.1",
"vitest": "^2.1.1"
},
"dependencies": {
"diod": "^2.0.0",
"echarts": "^5.5.1",
"reflect-metadata": "^0.2.2"
},
"engines": {
"node": "^20.17.0"
}
}