-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.11 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
{
"name": "fancybook",
"version": "1.0.0",
"description": "",
"main": "backend/app.js",
"scripts": {
"build": "cd frontend/ && CI= npm run build",
"backend-install": "npm --prefix backend/ install backend/",
"frontend-install": "npm --prefix frontend/ install frontend/",
"postinstall": "concurrently \"npm run backend-install\" \"npm run frontend-install\"",
"backend-start": "cd backend/ && npm run dev",
"frontend-start": "cd frontend/ && npm start",
"start": "concurrently \"npm run backend-start\" \"npm run frontend-start\"",
"backend-test": "cd backend/ && npm test -- --silent",
"frontend-test": "cd frontend/ && npm test -- --silent --watchAll=false",
"test": "npm run backend-test && npm run frontend-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateusmtoledo/fancybook.git"
},
"author": "mateusmtoledo",
"license": "MIT",
"bugs": {
"url": "https://github.com/mateusmtoledo/fancybook/issues"
},
"homepage": "https://github.com/mateusmtoledo/fancybook#readme",
"devDependencies": {
"concurrently": "^7.6.0"
}
}