-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "airtouch_challenge",
"version": "0.0.1",
"private": true,
"scripts": {
"start:prod": "node server.js",
"start:dev": "npm run build && node build/server.js",
"start:docker": "docker container start airtouch_challenge",
"lint": "node_modules/tslint/bin/tslint --project tsconfig.json -q",
"copyfiles": "cd src && ../node_modules/.bin/copyfiles ./**/*.key ../build && ../node_modules/.bin/copyfiles ./**/*.pem ../build && cp -R ./configuration ../build/configuration",
"build": "npm run lint && rm -rf ./build && node_modules/.bin/tsc && npm run copyfiles",
"build:docker": "npm run build && docker-compose -f docker-compose.yml up -d --build",
"generate-docs": "./node_modules/typedoc/bin/typedoc --exclude src/utils/** --readme ./README.md --out docs/ src/ && node ./node_modules/swagger-to-static/index.js swagger.yml docs/swagger"
},
"dependencies": {
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"bson": "^3.0.2",
"compression": "^1.7.3",
"cookie-parser": "~1.4.3",
"copyfiles": "^2.1.0",
"cors": "^2.8.4",
"express": "~4.16.0",
"jsonwebtoken": "^8.3.0",
"mongodb": "^3.1.8",
"mongoose": "^5.6.5",
"node-yaml": "^4.0.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"typegoose": "^5.8.0",
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bson": "^1.0.11",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/mongodb": "^3.1.14",
"@types/mongoose": "^5.3.12",
"@types/multer": "^1.3.7",
"@types/passport": "^0.4.7",
"@types/passport-jwt": "^3.0.1",
"swagger-to-static": "^1.0.2",
"tslint": "^5.18.0",
"typedoc": "^0.14.2",
"typedoc-plugin-external-module-name": "^2.1.0"
}
}