-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 915 Bytes
/
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
{
"name": "utm-builder",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "nodemon server.js -w server.js",
"start": "cross-env NODE_ENV=production node server.js",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"lint": "eslint . --fix"
},
"dependencies": {
"express": "^4.21.1",
"i18n-iso-countries": "^7.13.0",
"mongodb": "^6.9.0",
"pinia": "^2.2.6",
"uuid": "^10.0.0",
"vite-express": "^0.19.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/eslint-plugin": "1.1.7",
"@vue/test-utils": "^2.4.6",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"jsdom": "^25.0.1",
"nodemon": "^3.1.7",
"vite": "^5.4.10",
"vitest": "^2.1.4"
}
}