-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.08 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lipoic-backend",
"version": "1.0.0",
"description": "The backend repository for lipoic, built with node.js + typescript + express.js.",
"main": "src/index.ts",
"repository": "https://github.com/Lipoic/Lipoic-Backend.git",
"author": "Lipoic backend team",
"license": "GPL-3.0",
"scripts": {
"dev": "yarn swagger && concurrently \"nodemon -x yarn swagger\" \"nodemon\"",
"start": "yarn swagger && ts-node src/index.ts",
"lint": "yarn swagger && eslint src/**/*.ts --fix",
"test": "vitest --no-threads",
"test:ui": "yarn test --ui",
"coverage": "vitest run --no-threads --coverage",
"swagger": "ts-node script/swagger.ts"
},
"dependencies": {
"app-root-path": "^3.1.0",
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.11.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"swagger-autogen": "^2.23.1",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "4.17.17",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongoose": "5.11.97",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "18.14.0",
"@types/nodemailer": "^6.4.6",
"@types/supertest": "2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.49.0",
"@vitest/coverage-c8": "0.28.5",
"@vitest/ui": "^0.29.2",
"concurrently": "7.6.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"msw": "^0.47.3",
"nodemon": "2.0.21",
"prettier": "2.7.1",
"supertest": "6.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "4.9.5",
"vitest": "0.23.2"
},
"nodemonConfig": {
"exec": "ts-node src/index.ts",
"ext": "ts",
"watch": [
"src",
"assets"
],
"delay": "2"
}
}