-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.29 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
73
74
75
76
77
{
"name": "TSBackendScaffold",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest test/**/*.spec.ts",
"start": "nodemon",
"start:prod": "nodemon > app.log 2>&1",
"seed:users": "npx ts-node src/persist/mongodb/user/seed-users.ts",
"webpack": "webpack --config webpack.config.ts",
"tslint": "tslint --project tsconfig.json --config tslint.json",
"tslint-fix": "tslint --project tsconfig.json --config tslint.json --fix",
"start:dev": "./node_modules/nodemon/bin/nodemon.js",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"@types/bcryptjs": "^2.4.2",
"@types/express-mongo-sanitize": "^1.3.2",
"@types/faker": "^5.1.7",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"helmet": "^4.4.1",
"mongo-express-sanitize": "^1.0.1",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"tsyringe": "^4.5.0",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.15",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.1",
"@types/mongoose": "^5.10.3",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"chai": "^4.3.0",
"eslint": "^7.21.0",
"express-rate-limit": "^5.2.6",
"faker": "^5.4.0",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.18",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.2",
"ts-loader": "^6.2.2",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"tslog": "^3.1.1",
"typescript": "^4.2.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}