forked from JulianLee123/RDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 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
{
"name": "rdb",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:JulianLee123/RDB.git",
"author": "lee-julian",
"license": "MIT",
"scripts": {
"build": "CI=false && yarn install:all && yarn build:server && yarn build:client",
"build:client": "cd client && yarn build",
"build:server": "cd server && yarn build",
"clean:all": "rm -rf node_modules && cd server && rm -rf node_modules && cd ../client && rm -rf node_modules",
"install:all": "yarn && cd server && yarn && cd ../client && yarn",
"install:client": "cd client && yarn",
"install:server": "cd server && yarn",
"dev:client": "cd client && yarn start",
"dev:server": "cd server && yarn dev",
"start": "concurrently \"yarn start:client\" \"yarn start:server\"",
"start:client": "cd client && yarn start",
"start:server": "cd server && yarn start",
"test": "yarn install:all && yarn build && yarn start"
},
"dependencies": {
"concurrently": "^8.2.2"
},
"devDependencies": {}
}