-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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": "node_express_boilerplater",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --collectCoverage",
"prebuild": "rimraf dist/",
"build": "tsc",
"start": "yarn serve",
"serve": "node dist/index.js",
"watch-node": "nodemon",
"watch-ts": "tsc -w",
"migration:generate": "ts-node ./node_modules/.bin/typeorm migration:generate",
"migration:run": "ts-node ./node_modules/.bin/typeorm migration:run"
},
"keywords": [
"typescript",
"node",
"express",
"bookshelf",
"typescript",
"boilerplate",
"tslint"
],
"author": "a7urag",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.4",
"@types/body-parser": "^1.17.0",
"@types/express": "4.17.1",
"@types/jest": "^26.0.4",
"@types/joi": "17.2.3",
"@types/supertest": "^2.0.10",
"jest": "^26.1.0",
"nodemon": "2.0.7",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"supertest": "6.1.3",
"ts-jest": "^26.1.3",
"ts-node": "10.0.0",
"tslint": "6.1.3",
"tslint-config-airbnb": "^5.11.1",
"typescript": "3.9.9"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"celebrate": "13.0.3",
"dotenv": "10.0.0",
"express": "4.17.3",
"express-jwt": "^6.0.0",
"express-winston": "4.1.0",
"http-status-codes": "2.1.4",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.9.1",
"mysql": "^2.16.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.0",
"winston": "^3.2.1"
}
}