-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
{
"name": "boilerplate",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"prestart": "npm run build",
"prebuild": "npm run lint",
"lint": "eslint --cache --ext .ts .",
"build": "tsc",
"start": "env-cmd -f ./config/.env.dev node .",
"server:watch": "env-cmd -f ./config/.env.dev ts-node-dev --respawn --transpile-only src/index.ts",
"prettier": "prettier --write src/**",
"db": "C:/Users/SleLL/mongodb/bin/mongod.exe --dbpath=C:\\Users\\SleLL\\mongodb-data"
},
"author": "slelll",
"license": "ISC",
"description": "",
"dependencies": {
"@typegoose/typegoose": "^7.6.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.9",
"mongoose": "5.10.18",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"routing-controllers-openapi": "^3.0.0",
"sharp": "^0.28.3",
"swagger-ui-express": "^4.1.6",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.6",
"@types/validator": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"env-cmd": "^10.1.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.5",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.4"
}
}