-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.78 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": "modos",
"version": "0.0.1",
"description": "MoDoS REST API",
"private": true,
"scripts": {
"build": "npm run build:clean && npm run build:typescript",
"build:clean": "rimraf dist",
"build:typescript": "tsc --project tsconfig.json",
"build:watch": "tsc --project tsconfig.json --watch",
"dev": "npm run build && concurrently --raw \"npm run build:watch\" \"npm run nodemon\"",
"docker:dev": "npm run build && npm run migrate && concurrently --raw \"npm run build:watch\" \"npm run docker:nodemon\"",
"docker:nodemon": "nodemon --legacy-watch",
"doctoc": "doctoc --github README.md",
"nodemon": "nodemon",
"start": "node dist/index.js",
"migration:create": "ts-node ./node_modules/.bin/typeorm migration:create --config src/ormconfig.ts",
"migration:generate": "ts-node ./node_modules/.bin/typeorm migration:generate --config src/ormconfig.ts",
"migrate": "node dist/scripts/migrate.js",
"rollback": "node dist/scripts/rollback.js"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-glob": "^3.2.4",
"jsonwebtoken": "^8.5.1",
"pg": "^8.3.0",
"reflect-metadata": "^0.1.10",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.24",
"concurrently": "^5.2.0",
"doctoc": "^1.4.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": "^14.0.0"
}
}