-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.19 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": "buddha",
"version": "0.0.1",
"description": "부스트 DDㅏ방, 부따 Buddha ᕕ( ᐛ )ᕗ",
"main": "index.js",
"scripts": {
"test": "concurrently --kill-others-on-fail \"npm run test:cov -w server\" \"npm run test -w client\"",
"dev": "concurrently --kill-others-on-fail \"npm run start:dev -w server\" \"npm run start -w client\"",
"build": "concurrently --kill-others-on-fail \"npm run build -w server\" \"npm run build -w client\"",
"prod": "concurrently --kill-others-on-fail \"npm run start:prod -w server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/boostcampwm-2022/web29-Buddha.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/boostcampwm-2022/web29-Buddha/issues"
},
"homepage": "https://github.com/boostcampwm-2022/web29-Buddha#readme",
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"concurrently": "^7.5.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}