This repository was archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.84 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.84 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "ts-node-express-api",
"version": "1.0.0",
"description": "TypeScript Node Express API Starter Project",
"scripts": {
"precommit": "lint-staged",
"lint": "tslint -c tslint.json 'src/**/*.{ts,js}'; exit 0",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.ts'; exit 0",
"codecov": "cat coverage/*/lcov.info | codecov",
"transpile": "tsc",
"clean": "rimraf dist",
"build": "NODE_ENV=production run-s clean transpile",
"migrate": "knex migrate:latest",
"migrate:make": "knex migrate:make",
"migrate:rollback": "knex migrate:rollback",
"test": "NODE_ENV=test mocha --recursive test/**/*.test.ts",
"test:unit": "NODE_ENV=test mocha --recursive test/unit/**/*.test.ts",
"test:api": "NODE_ENV=test mocha --recursive test/api/**/*.test.ts",
"test:watch": "NODE_ENV=test mocha --watch --recursive test/**/*.test.ts",
"test:coverage":
"NODE_ENV=test istanbul cover node_modules/mocha/bin/_mocha -- --recursive --require babel-register --colors --reporter spec test",
"watch": "tsc --watch",
"start": "nodemon",
"service:start": "pm2 start ecosystem.config.js",
"service:reload": "pm2 reload ecosystem.config.js",
"service:startup": "pm2 startup",
"service:stop": "pm2 stop ecosystem.config.js",
"service:list": "pm2 list ecosystem.config.js",
"service:delete": "pm2 delete ecosystem.config.js",
"service:logs": "pm2 logs",
"prettify": "prettier --single-quote --write \"src/**/*.{ts,js,json}\""
},
"lint-staged": {
"*.{ts,js}": [
"prettier --single-quote --write",
"tslint --fix -c tslint.json 'src/**/*.{ts,js}'; exit 0",
"git add"
]
},
"keywords": [
"typescript",
"javascript",
"node",
"express",
"rest",
"api",
"starter"
],
"private": true,
"authors": ["Kabir Baidhya <kabirbaidhya@gmail.com>"],
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.80.0",
"babel-polyfill": "^6.26.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"boom": "^5.1.0",
"camelize": "^1.0.0",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"helmet": "^3.6.1",
"http-status-codes": "^1.1.6",
"joi": "^10.5.1",
"jsonwebtoken": "^7.4.1",
"knex": "0.13.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"pg": "^6.2.3",
"qs": "^6.5.0",
"ramda": "^0.24.1",
"sharp": "^0.18.2",
"sprintf-js": "^1.1.1",
"uuid": "^3.1.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^1.16.5",
"@types/boom": "^4.3.7",
"@types/chai": "^4.0.4",
"@types/cors": "^2.8.1",
"@types/dotenv": "^4.0.1",
"@types/helmet": "^0.0.36",
"@types/joi": "^10.4.1",
"@types/jsonwebtoken": "^7.2.3",
"@types/knex": "^0.0.60",
"@types/lodash": "^4.14.74",
"@types/mocha": "^2.2.43",
"@types/morgan": "^1.7.32",
"@types/multer": "^1.3.3",
"@types/node": "^8.0.25",
"@types/nodemailer": "^3.1.2",
"@types/pg": "^6.1.43",
"@types/qs": "^6.5.0",
"@types/ramda": "^0.24.8",
"@types/serve-favicon": "^2.2.29",
"@types/sprintf-js": "^0.0.27",
"@types/supertest": "^2.0.3",
"@types/winston": "^2.3.5",
"babel-register": "^6.24.1",
"chai": "^4.0.0",
"codecov": "^2.2.0",
"eslint": "^3.19.0",
"husky": "^0.13.4",
"istanbul": "1.1.0-alpha.1",
"lint-staged": "^3.5.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"pm2": "^2.6.1",
"prettier": "^1.6.0",
"rimraf": "^2.6.1",
"supertest": "^3.0.0",
"ts-node": "^3.3.0",
"tsc": "^1.20150623.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
}
}