-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.93 KB
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
{
"name": "nodejs-backend-docker-ts",
"version": "1.0.0",
"description": "Node.js API in Typescript running with docker boilerplate",
"main": "server.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"build": "tsc",
"knex": "knex",
"migration": "knex --knexfile=./src/db/knexfile.js migrate:make",
"migration:rollback": "knex migrate:down --knexfile=./src/db/knexfile.js",
"migration:migrate": "knex --knexfile=./src/db/knexfile.js migrate:migrate",
"seed": "knex --knexfile=./src/db/knexfile.js seed:make",
"test": "cross-env NODE_ENV=test jest"
},
"author": "Janid Ham <janid.ham20@gmail.com>",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"bole": "^3.0.2",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"glob": "^7.1.4",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.5",
"module-alias": "^2.2.1",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"objection": "^1.6.8",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"stream-file-archive": "^1.1.4",
"through2": "^3.0.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/faker": "^4.1.5",
"@types/helmet": "0.0.43",
"@types/jest": "^24.0.13",
"@types/jsonwebtoken": "^8.3.2",
"@types/knex": "^0.16.1",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.2",
"@types/passport": "^1.0.0",
"@types/passport-http-bearer": "^1.0.33",
"@types/through2": "^2.0.34",
"@types/uuid": "^3.4.4",
"faker": "^4.1.0",
"jest": "^24.8.0",
"kill-port": "^1.5.0",
"nodemon": "^1.19.0",
"ts-jest": "^24.0.2",
"ts-lint": "^4.5.1",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.5"
}
}