-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 874 Bytes
/
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
{
"name": "nestjs-clone-bay",
"version": "0.0.14",
"description": "Development environment for nestjs-clone-bay",
"scripts": {
"postinstall": "cd dev && npm ci && cd ../docs && npm ci && cd ../lib && npm ci",
"start": "docker compose up -d && cd lib && npm run build && cd ../dev && npm run start:dev",
"stop": "docker compose down",
"lint": "npm run lint:dev && npm run lint:lib",
"lint:dev": "cd dev && npm run lint",
"lint:lib": "cd lib && npm run lint",
"version": "scripts/version_sub_projects.sh $npm_package_version",
"postversion": "git push && git push --tags",
"test": "cd lib && npm test",
"docs": "cd docs && npm start",
"generate": "cd docs && npm run generate"
},
"author": "Joonas Häkkinen <[email protected]>",
"license": "GPL-3.0-only",
"devDependencies": {
"@nestjs/cli": "^10.1.10"
}
}