-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "soetz-dot-codes",
"version": "0.0.0",
"scripts": {
"dev": "node server",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.js --outDir dist/server",
"serve": "cross-env NODE_ENV=production node server",
"debug": "node --inspect-brk server",
"preview": "npm run build && npm run serve",
"lint": "eslint --ext .ts,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write"
},
"dependencies": {
"axios": "^0.24.0",
"express": "^4.17.1",
"gsap": "^3.8.0",
"lodash": "^4.17.21",
"marked": "^4.0.8",
"three": "^0.134.0",
"vue": "^3.2.6",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.176",
"@types/marked": "^4.0.1",
"@types/node": "^16.11.7",
"@types/three": "^0.133.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vitejs/plugin-vue": "^1.6.1",
"@vue/compiler-sfc": "^3.2.6",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/server-renderer": "^3.2.6",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^7.17.0",
"mongodb": "^4.2.0",
"prettier": "2.3.2",
"typescript": "^4.3.2",
"uuid": "^8.3.2",
"vite": "^2.5.4",
"vue-tsc": "^0.2.2"
}
}