-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
51
52
53
54
55
56
{
"name": "node-week-9",
"version": "0.0.0",
"private": true,
"engines": {
"node": "14.18.1"
},
"scripts": {
"start": "Cl= node ./bin/www",
"start:dev": "nodemon ./bin/www",
"build": "yarn tsc",
"test": "jest",
"clean": "rm -rf dist && mkdir dist",
"heroku-postbuild": "yarn clean && yarn build"
},
"dependencies": {
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^8.1.0",
"mongoose": "^6.1.5",
"morgan": "~1.9.1",
"nodemon": "^2.0.15",
"swagger-ui-express": "^4.3.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"uniqid": "^5.4.0",
"validator": "^13.7.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/nodemon": "^1.19.1",
"@types/supertest": "^2.0.11",
"@types/uniqid": "^5.3.2",
"@types/validator": "^13.7.1",
"jest": "^27.4.7",
"supertest": "^6.2.0"
}
}