-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "bots-backend",
"version": "1.0.0",
"description": "Using latest JavaScript features on the server",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"migrate": "npm run typeorm -- migration:run",
"migrate:revert": "npm run typeorm -- migration:revert",
"jscopy": "copyfiles -u 1 src/**/*.js dist",
"build": "tsoa routes && tsc && npm run jscopy",
"start": "node dist/index.js",
"build:dev": "tsoa routes && tsoa swagger && tsc && npm run jscopy",
"start:dev": "npm run build:dev && node --inspect dist/index.js",
"format": "prettier --write \"src/**/*.{ts,json}\""
},
"dependencies": {
"bcrypt": "^3.0.5",
"body-parser": "^1.18.3",
"copyfiles": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-rate-limit": "^3.4.0",
"generic-json-sanitizer": "^1.0.1",
"helmet": "^3.15.1",
"http": "0.0.0",
"jsonwebtoken": "^8.5.1",
"log4js": "^4.0.2",
"morgan": "^1.9.0",
"node-cache": "^4.2.0",
"path": "^0.12.7",
"pg": "^7.8.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.2",
"ts-node": "^8.0.3",
"tsoa": "^2.3.8",
"typeorm": "^0.2.15"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^10.12.30",
"@types/node-cache": "^4.1.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"typescript": "^3.3.3333"
}
}