-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 2.35 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
{
"private": true,
"workspaces": [
"documentation",
"nestjs",
"playground",
"cli",
"plugins/auth-proxy",
"plugins/faker",
"plugins/health"
],
"scripts": {
"clean": "rimraf **/node_modules **/dist node_modules",
"build": "yarn workspace @norest/nestjs build && yarn workspace @norest/cli build && yarn plugin:build",
"test": "yarn workspace @norest/nestjs test",
"watch:cli": "yarn workspace @norest/cli build -w",
"watch:nestjs": "yarn workspace @norest/nestjs start:dev",
"watch:playground": "yarn workspace @norest/playground start",
"start:cli": "yarn workspace @norest/cli start:dev",
"start:nestjs": "yarn workspace @norest/nestjs start",
"db:mongo": "docker start mongo && docker run -it --rm -p 8081:8081 --link mongo:mongo mongo-express",
"release": "yarn version --no-git-tag-version",
"version:cli": "cd cli && yarn version --new-version $npm_package_version --no-git-tag-version",
"version:nestjs": "cd nestjs && yarn version --new-version $npm_package_version --no-git-tag-version",
"version:playground": "cd playground && yarn version --new-version $npm_package_version --no-git-tag-version",
"version:plugin:auth-proxy": "cd plugins/auth-proxy && yarn version --new-version $npm_package_version --no-git-tag-version",
"version:plugin:faker": "cd plugins/faker && yarn version --new-version $npm_package_version --no-git-tag-version",
"version:plugin:health": "cd plugins/health && yarn version --new-version $npm_package_version --no-git-tag-version",
"plugin:build": "yarn workspace @norest/plugin-health build && yarn workspace @norest/plugin-auth-proxy build && yarn workspace @norest/plugin-faker build",
"plugin:watch": "yarn workspace @norest/plugin-health watch && yarn workspace @norest/plugin-auth-proxy watch && yarn workspace @norest/plugin-faker watch",
"postrelease": "yarn version:plugin:health && yarn version:plugin:auth-proxy && yarn version:plugin:faker && yarn version:nestjs && yarn version:cli && yarn version:playground && git commit -am '✔ (chore) bumping versions' && git tag v$npm_package_version && git push origin v$npm_package_version"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2"
},
"version": "0.3.4"
}