-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 906 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 906 Bytes
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": "password-generator",
"version": "1.2.0",
"description": "Simple Vue-based password generator",
"type": "module",
"config": {
"port": 6100
},
"scripts": {
"dev": "vite",
"prebuild": "node scripts/generate-changelog.js",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"server": "tsx server.ts",
"start": "npm run build && npm run server",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"dotenv": "^16.3.0",
"express": "^4.18.2",
"vue": "^3.4.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/test-utils": "^2.4.0",
"jsdom": "^24.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^1.2.0",
"vue-tsc": "^2.0.0"
}
}