-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "agentops-lowcode-platform",
"version": "2.3.0-security-multitenant-observability",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "vite build --mode production",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test:unit && npm run test:contract && npm run build && npm run test:e2e",
"playwright:install": "playwright install",
"api:dev": "node server/index.js",
"test:contract": "vitest run tests/contract",
"test:security": "vitest run tests/unit/security-policy.test.js tests/unit/state-machine.test.js tests/contract",
"typecheck": "vue-tsc --noEmit",
"ci": "npm run test:unit && npm run test:contract && npm run build"
},
"dependencies": {
"@vueuse/core": "^12.8.2",
"echarts": "^5.6.0",
"js-yaml": "^4.1.0",
"pinia": "^3.0.4",
"vue": "^3.5.0",
"vue-router": "^4.5.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.0",
"@vue/test-utils": "^2.4.6",
"jsdom": "^26.0.0",
"vite": "^6.0.0",
"vitest": "^3.2.4",
"@playwright/test": "^1.54.0",
"typescript": "^5.8.0",
"vue-tsc": "^2.2.0"
}
}