-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.66 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
42
43
44
45
46
47
{
"name": "cra-with-api",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"postinstall": "./scripts/gitmoji-config.sh",
"git:merge-master": "./scripts/git-merge-master-into-all-branches.sh",
"node:check-latest": "./scripts/node-check-latest.sh",
"project:set-node-ver": "./scripts/project-set-node-ver.sh",
"project:set-name": "node --experimental-modules scripts/project-set-name",
"ncu": "run-s ncu:*",
"ncu-a": "run-s \"ncu:* -a\"",
"ncu:root": "ncu --packageFile package.json",
"ncu:client": "cd client && npx ncu --packageFile package.json",
"ncu:server": "cd server && npx ncu --packageFile package.json",
"start:dev": "run-p start:dev:*",
"start:dev:client": "yarn --cwd client/ start",
"start:dev:server": "yarn --cwd server/ start:dev",
"start-https:dev": "run-p start-https:dev:* start:dev:server",
"start-https:dev:client": "yarn --cwd client/ start-https",
"start:prod": "run-s build:server start:prod:server",
"start:prod:server": "yarn --cwd server/ start:prod",
"build": "run-p build:*",
"build:client": "yarn --cwd client/ build",
"build:server": "yarn --cwd server/ build",
"deploy": "run-s build deploy:now",
"deploy:now": "./scripts/now-deploy.sh",
"du": "run-s du:*",
"du:client/build": "du -ah client/build | sort -k2",
"du:node_modules": "du -hs ./node_modules"
},
"devDependencies": {
"check-node-version": "^3.2.0",
"edit-json-file": "^1.1.0",
"gitmoji-cli": "^1.9.0",
"npm-check-updates": "^2.14.2",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2"
},
"engines": {
"yarn": ">=1",
"node": "10"
}
}