This repository has been archived by the owner on Apr 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
{
"name": "tsexpress",
"version": "0.0.2",
"description": "Simple API in nodeJS with TypeScript and express",
"main": "server.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --no-notify --clear --debounce 1000 ./src/server.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lkurzyniec/tsexpress.git"
},
"author": "Łukasz Kurzyniec",
"license": "ISC",
"bugs": {
"url": "https://github.com/lkurzyniec/tsexpress/issues"
},
"homepage": "https://github.com/lkurzyniec/tsexpress",
"dependencies": {
"bcrypt": "^5.0.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.11.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"envalid": "^6.0.0",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"helmet": "^3.21.2",
"inversify": "^5.0.1",
"json-ignore": "^0.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.3",
"mongoose-autopopulate": "^0.9.1",
"reflect-metadata": "^0.1.13",
"statuses": "^1.5.0",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.2",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/jest": "^24.0.23",
"@types/jsonwebtoken": "^8.3.5",
"@types/mongoose": "^5.5.32",
"@types/node": "^12.12.9",
"@types/statuses": "^1.5.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"reflect-metadata"
]
}
}