-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "content-server",
"version": "1.0.0",
"description": "",
"main": "./build/app.js",
"scripts": {
"swagger-autogen": "export NODE_ENV=dev && node swagger.js",
"test": "jest --runInBand --watchAll --verbose --coverage",
"build": "tsc",
"dev": "export NODE_ENV=dev && ts-node-dev --inspect --respawn --ignore-watch node_modules src/app.ts",
"start": "node ./build/app.js",
"plop": "plop",
"doc": "typedoc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/passport": "^1.0.6",
"@types/passport-jwt": "^3.0.5",
"@types/passport-local": "^1.0.33",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.3",
"mongoose": "^5.11.13",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"swagger-autogen": "^2.8.1",
"swagger-ui-express": "^4.1.6"
},
"engines": {
"node": "14.x.x"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.16",
"@microsoft/tsdoc": "^0.13.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.168",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.22",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26.6.3",
"plop": "^2.7.4",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typedoc": "^0.20.35",
"typedoc-plugin-not-exported": "^0.1.6",
"typescript": "^4.1.3"
}
}