-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.79 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
{
"name": "daedalus-web-app",
"type": "module",
"version": "0.1.2",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"dev:init": "npm install && npm run db:dev:migrate && npm run dev",
"db:dev:migrate": "prisma migrate dev",
"generate": "nuxt generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test:integration": "npm run db:dev:migrate && vitest ./tests/integration/ --reporter=basic --disable-console-intercept",
"test:unit": "vitest ./tests/unit/ --reporter=basic --disable-console-intercept",
"test:unit:coverage": "vitest ./tests/unit --coverage",
"test:ssr": "vitest ./tests/ssr/*.spec.ts",
"test:e2e": "playwright test"
},
"dependencies": {
"@amcharts/amcharts5": "^5.10.5",
"@amcharts/amcharts5-geodata": "^5.1.4",
"@coreui/coreui": "^5.1.2",
"@coreui/icons": "^3.0.1",
"@coreui/icons-vue": "^2.1.0",
"@coreui/vue": "^5.2.0",
"@nuxt/eslint": "^0.7.3",
"@nuxt/test-utils": "^3.14.3",
"@nuxtjs/fontaine": "^0.4.3",
"@pinia/nuxt": "^0.5.5",
"@prisma/client": "^6.1.0",
"@socket.io/admin-ui": "^0.5.1",
"country-iso-3-to-2": "^1.1.1",
"eslint": "^9.12.0",
"hex-rgb": "^5.0.0",
"highcharts": "^11.4.8",
"jssha": "^3.3.1",
"lodash.throttle": "^4.1.1",
"nuxt": "^3.14.1592",
"perfect-debounce": "^1.0.0",
"pinia": "^2.2.4",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"vue": "^3.5",
"vue3-select-component": "^0.6.1",
"xlsx": "^0.18.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.24.0",
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@mockoon/cli": "^9.1.0",
"@pinia/testing": "^0.1.6",
"@playwright/test": "^1.49.1",
"@testing-library/vue": "^8.1.0",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "^2.1.2",
"@vue/test-utils": "^2.4.6",
"babel-jest": "^29.7.0",
"canvas": "^2.11.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.9",
"prisma": "^6.1.0",
"sass": "^1.79.5",
"simple-git-hooks": "^2.11.1",
"vitest": "^2.1.2"
},
"jest": {
"testEnvironment": "jsdom",
"transformIgnorePatterns": [
"/node_modules/(?!@amcharts|d3-|internmap)"
]
},
"overrides": {
"vue": "^3.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix",
"*/schema.prisma": "prisma format"
}
}