-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "node-typescript-rest-api",
"version": "1.0.0",
"description": "This is a simple REST API developed using node and express with typescript",
"scripts": {
"start": "npm run transpile && node server.js",
"dev": "concurrently \"npm:watch\" \"npm:serve\"",
"serve": "nodemon server.js",
"watch": "tsc -w",
"transpile": "tsc",
"seed": "npm run transpile && node src/db/seed.js",
"lint": "tslint -c tslint.json -p tsconfig.json"
},
"engines": {
"node": ">=8.0"
},
"keywords": [
"Node",
"Typescript",
"postgresql",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/nmanikiran/rest-api-node-typescript.git"
},
"homepage": "https://github.com/nmanikiran/rest-api-node-typescript#readme",
"bugs": {
"url": "https://github.com/nmanikiran/rest-api-node-typescript/issues"
},
"author": "Mani Kiran N",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/helmet": "4.0.0",
"@types/joi": "^17.2.2",
"@types/node": "^15.0.1",
"@types/sequelize": "^4.28.9",
"@types/winston": "^2.4.4",
"concurrently": "^6.0.2",
"nodemon": "^2.0.7",
"tslint": "^6.1.2",
"typescript": "^4.2.4"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"helmet": "^4.5.0",
"husky": "^6.0.0",
"joi": "^17.4.0",
"morgan": "^1.10.0",
"pg": "^8.6.0",
"sequelize": "^6.6.2",
"winston": "^3.3.3"
},
"hooks": {
"pre-commit": "npm run lint"
}
}