-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "vue-project",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_ENV=development nodemon --config config/server/nodemon.json src/server/main.js",
"start": "NODE_ENV=production node src/server/main.js",
"build:server": "vite build --outDir dist/server --ssr src/entry-server.ts",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build": "run-p build:client build:server",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "nightwatch tests/e2e/*",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"axios": "^1.7.5",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"http-proxy-middleware": "^3.0.0",
"pinia": "^2.2.2",
"sirv": "^2.0.4",
"vue": "^3.4.29",
"vue-router": "4"
},
"devDependencies": {
"@nightwatch/vue": "^3.1.1",
"@rushstack/eslint-patch": "^1.8.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.16.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"chromedriver": "^126.0.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"geckodriver": "^4.4.1",
"jest": "^29.7.0",
"jsdom": "^24.1.0",
"nightwatch": "^3.6.3",
"nodemon": "^3.1.4",
"npm-run-all2": "^6.2.0",
"prettier": "^3.2.5",
"sass": "^1.77.8",
"sass-embedded": "^1.77.8",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.3.1",
"vite-plugin-nightwatch": "^0.4.6",
"vitest": "^2.0.5",
"vue-tsc": "^2.0.21"
}
}