-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.27 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.27 KB
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": "ts-react-express-starter",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"frontend",
"server",
"common"
],
"scripts": {
"start": "yarn start:dev",
"start:dev": "concurrently yarn:start:dev:*",
"start:dev:frontend": "yarn workspace @ts-react-express-starter/frontend start",
"start:dev:server": "yarn workspace @ts-react-express-starter/server start",
"build": "concurrently yarn:build:*",
"build:frontend": "yarn workspace @ts-react-express-starter/frontend build",
"build:server": "yarn workspace @ts-react-express-starter/server build",
"build:common": "yarn workspace @ts-react-express-starter/common build",
"start:build": "cross-env NODE_ENV=\"production\" node dist",
"test": "jest --projects frontend common server",
"test-ci": "cross-env JEST_JUNIT_OUTPUT_DIR=\"test-results/jest\" jest --projects frontend common server --ci --reporters=default --reporters=jest-junit",
"test:frontend": "jest --projects frontend",
"test:common": "jest --projects common",
"test:server": "jest --projects server"
},
"devDependencies": {
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"jest-junit": "^6.4.0"
}
}