-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "node-typescript-init",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"test": "NODE_ENV=test mocha test/*.ts --timeout 10000 -exit -r ts-node/register"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.3",
"@types/swagger-ui-express": "^4.1.3",
"@types/winston": "^2.4.4",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.1.0",
"husky": "^8.0.1",
"nodemon": "^2.0.15",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/swagger-jsdoc": "^6.0.1",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"chai": "^4.3.6",
"dayjs": "^1.11.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^10.0.0",
"mongoose": "^6.3.1",
"morgan": "^1.10.0",
"supertest": "^6.2.4",
"swagger-autogen": "^2.21.5",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
}
}