-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
25 lines (25 loc) · 875 Bytes
/
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
{
"name": "ftd-beasty-book",
"version": "1.0.0",
"description": "Monster reference for Five Torches Deep TTRPG",
"main": "index.js",
"scripts": {
"start": "concurrently \"cd api&&yarn start\" \"cd ui&&yarn start\"",
"start:prod": "cd api/dist&&node index.js",
"start:dev-db": "docker-compose -f docker/docker-compose.yml up",
"test": "cd api&&yarn test&&cd ../ui&&yarn test",
"build": "cd api&&yarn build&&cd ../ui&&yarn build&&cd ..&©files ./ui/build/**/* ./api/dist/public",
"postinstall": "cd ui&&yarn&&cd ../api&&yarn&&cd ../import&&yarn&&cd .."
},
"author": "Gareth Williams",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.3",
"yarn-audit-fix": "^9.3.12"
}
}