-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.34 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
{
"name": "biblionest",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"start": "cross-env NODE_ENV=production npm run start:prod --workspace=server",
"start:dev": "cross-env NODE_ENV=development concurrently --names ng,nest,apigen --kill-others \"npm run start:dev --workspace=biblionest-front\" \"npm run start:dev --workspace=server\" \"nodemon --watch server/src/ --ext ts .utils/api-client-generator-launcher.js online\"",
"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"
},
"devDependencies": {
"concurrently": "^7.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.3.2"
},
"workspaces": [
"client",
"server"
],
"dependencies": {
"cross-env": "^7.0.3",
"dotenv-cli": "^7.0.0",
"json2yaml": "^1.1.0",
"moment": "^2.29.4",
"ng-openapi-gen": "^0.21.2",
"node-fetch": "^2.6.7"
}
}