-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.29 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
{
"name": "be-the-hero",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"client",
"mobile",
"server"
],
"scripts": {
"start": "concurrently \"yarn:start:*\"",
"start:web": "concurrently -n client,server \"yarn:start:client\" \"yarn:start:server\"",
"start:app": "concurrently -n mobile,server \"yarn:start:mobile\" \"yarn:start:server\"",
"start:client": "yarn workspace @be-the-hero/client run start",
"start:mobile": "yarn workspace @be-the-hero/mobile run start",
"start:server": "yarn workspace @be-the-hero/server run start",
"build": "concurrently \"yarn:build:*\"",
"build:web": "concurrently -n client,server \"yarn:build:client\" \"yarn:build:server\"",
"build:app": "concurrently -n mobile,server \"yarn:build:mobile\" \"yarn:build:server\"",
"build:client": "yarn workspace @be-the-hero/client run build",
"build:mobile": "yarn workspace @be-the-hero/mobile run build",
"build:server": "yarn workspace @be-the-hero/server run build"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"jest": "^25.2.4",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
}
}