-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "express-vue-template",
"private": true,
"description": "",
"main": "index.js",
"packageManager": "[email protected]",
"engines": {
"node": ">=16.13.0"
},
"volta": {
"node": "18.18.2"
},
"scripts": {
"prepare": "husky install",
"dev:client": "pnpm -C client dev",
"dev:server": "pnpm -C server dev",
"dev:server-force": "cross-env DB_FORCE=TRUE pnpm -C server dev",
"build:client": "pnpm -C client build",
"build": "pnpm -C build build",
"db:migrate:dev": "pnpm -C packages/db_migration migrate:dev",
"db:init:dev": "pnpm -C server db:init:dev",
"clean:node_modules": "find . -name \"node_modules\" -type d -exec rm -rf '{}' +"
},
"productScripts": {
"start": "cross-env NODE_ENV=production node ./server/src/index.js",
"db:init": "cross-env NODE_ENV=production node ./server/src/init_db.js",
"db:migrate": "cross-env NODE_ENV=production sequelize-cli db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EsunR/express-vue-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/EsunR/express-vue-template/issues"
},
"homepage": "https://github.com/EsunR/express-vue-template#readme",
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"typescript": "^5.2.2"
},
"dependencies": {
"@express-vue-template/client": "workspace:^0.0.0",
"@express-vue-template/server": "workspace:*",
"@express-vue-template/types": "workspace:*",
"@express-vue-template/utils": "workspace:*"
},
"lint-staged": {
"*.{vue,ts,js}": [
"prettier --write",
"eslint --cache --fix"
]
}
}