-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 910 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
26
27
28
29
30
31
32
33
34
{
"name": "finereads",
"version": "1.0.0",
"description": "Simple book management app",
"scripts": {
"tsc": "tsc",
"start": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"buildClient": "cd client && rm -rf dist && npm run build && cd ..",
"deploy": "npm run buildClient && tsc && node ./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szmejk/finereads.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/szmejk/finereads/issues"
},
"homepage": "https://github.com/szmejk/finereads#readme",
"dependencies": {
"express": "^4.17.1",
"nodemon": "^1.19.1",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^12.0.8",
"@types/uuid": "^3.4.4"
}
}