-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"./",
"web"
],
"scripts": {
"start": "ts-node sql/sqlSetup.ts && nodemon index.ts --ignore web/",
"start-prod": "ts-node index.ts",
"up": "docker-compose up -d --build",
"logs": "docker-compose logs -f app",
"down": "docker-compose down"
},
"dependencies": {
"@types/chalk": "^2.2.0",
"@types/faker": "^5.1.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/passport": "^1.0.4",
"@types/pg": "^7.14.5",
"@types/yup": "^0.29.9",
"bcrypt": "^5.0.0",
"chalk": "^4.1.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.4.1",
"yup": "^0.29.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.7",
"@types/node": "^14.6.0",
"@types/passport-local": "^1.0.33",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": true
}
}