-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.93 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
48
49
50
51
52
{
"name": "project16-f-account-book",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"storybook": "yarn workspace client storybook",
"precommit": "run-p precommit:client precommit:server",
"precommit:client": "yarn workspace client precommit",
"precommit:server": "yarn workspace server precommit",
"dev": "run-p dev:client dev:server",
"dev:client": "yarn workspace client start",
"dev:server": "yarn workspace server dev",
"test": "run-p test:server test:client",
"test:client": "yarn workspace client test",
"test:server": "yarn workspace server test",
"build:server": "yarn workspace server build",
"build:client": "yarn workspace client build",
"build": "run-p build:server build:client",
"docker": "docker-compose -f docker-compose.dev.yml pull && docker-compose -f docker-compose.dev.yml up -d",
"docker:server": "docker-compose -f docker-compose.dev.yml pull && docker-compose -f docker-compose.dev.yml up -d accountbook-server",
"docker:client": "docker-compose -f docker-compose.dev.yml pull && docker-compose -f docker-compose.dev.yml up -d accountbook-client",
"docker:down": "docker-compose -f docker-compose.dev.yml down --remove-orphan",
"lint:client": "yarn workspace client lint:fix",
"lint:server": "yarn workspace server lint:fix",
"lint": "run-p lint:client lint:server"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/boostcamp-2020/Project16-F-Account-Book.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/boostcamp-2020/Project16-F-Account-Book/issues"
},
"homepage": "https://github.com/boostcamp-2020/Project16-F-Account-Book#readme",
"workspaces": [
"client",
"server"
],
"devDependencies": {
"husky": "^4.3.0",
"npm-run-all": "^4.1.5"
}
}