-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "rockets-starter",
"license": "BSD-3-Clause",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"clean": "./node_modules/.bin/rimraf packages/*/dist",
"start": "yarn start:api",
"start:dev": "yarn start:api:dev",
"start:debug": "yarn start:api:debug",
"start:api": "yarn workspace rockets-api start",
"start:api:dev": "yarn workspace rockets-api start:dev",
"start:api:debug": "yarn workspace rockets-api start:debug",
"dev:web": "yarn workspace rockets-next-web dev --force",
"build": "yarn workspace rockets-api build",
"test": "yarn test:api",
"test:api": "yarn workspace rockets-api test",
"sandbox:init": "yarn workspace rockets-api sandbox:init",
"sandbox:rebuild": "yarn workspace rockets-api sandbox:rebuild"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"pg": "^8.7.3",
"rxjs": "^7.2.0",
"typeorm": "^0.3.7"
},
"packageManager": "[email protected]"
}