-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.81 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
{
"name": "derespose",
"private": true,
"engines": {
"node": "18",
"npm": "9.5.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development concurrently --names ng,nest,apigen --kill-others \"npm run start:dev --workspace=client\" \"npm run start:dev --workspace=server\" \"nodemon --watch server/src/ --ext ts .utils/api-client-generator-launcher.js online\"",
"start:prod": "cross-env NODE_ENV=production npm run start:prod --workspace=server",
"build": "npm run build --workspace=server && npm run build-api-client && npm run build --workspace=client",
"build-api-client": "node .utils/api-client-generator-launcher.js",
"test": "npm run test --workspace=server && npm run build-api-client && npm run test --workspace=client",
"test:ci": "concurrently --max-processes=1 --raw --success=all \"npm run test:ci --workspace=server\" \"npm run build-api-client && npm run test:ci --workspace=client\"",
"ng": "npx --workspace=client ng",
"nest": "npx --workspace=server nest",
"prepare": "husky install",
"commit": "cz"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"commitizen": "^4.3.0",
"concurrently": "^7.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"nodemon": "^2.0.15",
"prettier": "^2.3.2"
},
"workspaces": [
"client",
"server"
],
"dependencies": {
"cross-env": "^7.0.3",
"json2yaml": "^1.1.0",
"ng-openapi-gen": "^0.21.2",
"node-fetch": "^2.6.7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableSubjectLowerCase": true
}
}
}