generated from devrrior/api-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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": "api-typescript-template",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "node build/config/server.js",
"dev": "ts-node-dev src/config/server.ts",
"tsc": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose --detectOpenHandles"
},
"devDependencies": {
"@typegoose/typegoose": "9.11.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.5",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.1",
"mongodb-memory-server": "^8.7.1",
"morgan": "^1.10.0",
"prettier": "^2.7.1",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"argon2": "^0.28.7",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "6.5.0",
"nanoid": "3.3.4",
"nodemailer": "^6.7.7",
"swagger-jsdoc": "^6.2.2",
"swagger-ui-express": "^4.5.0",
"winston": "^3.8.0",
"zod": "^3.17.3"
}
}