forked from Q00/api_server_boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.23 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
67
68
69
70
71
72
73
{
"name": "api_server_boilerplate",
"version": "1.0.0",
"description": "api server boilerplate",
"main": "index.js",
"repository": "[email protected]:Q00/api_server_boilerplate.git",
"author": "Q00 <[email protected]>",
"license": "MIT",
"scripts": {
"db:dev": "cp .env.development .env && NODE_ENV=development ts-node ./src/database/cli",
"db:sync": "node ./dist/database/cli sync",
"build": "tsc",
"test": "jest",
"dev": "cp .env.development .env && NODE_ENV=development nodemon",
"start": "cp .env.production .env&& NODE_ENV=production node ./dist",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run check"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/jest": "^25.1.1",
"@types/jsonwebtoken": "^8.3.7",
"@types/node": "^13.7.0",
"@types/pluralize": "^0.0.29",
"@types/signale": "^1.2.1",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^4.1.1",
"@types/yargs": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^2.19.1-alpha.1",
"@typescript-eslint/parser": "^2.19.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"gts": "^1.1.2",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^25.1.0",
"typescript": "^3.7.5"
},
"dependencies": {
"axios": "^0.19.2",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"class-validator-jsonschema": "^1.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.1",
"pluralize": "^8.0.0",
"redoc": "^2.0.0-rc.20",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.0",
"routing-controllers-openapi": "^1.8.0",
"signale": "^1.4.0",
"swagger-ui-express": "^4.1.3",
"typedi": "^0.8.0",
"typeorm": "^0.2.22",
"yargs": "^15.1.0"
}
}