-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (55 loc) · 1.39 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
{
"name": "news-blog-backend",
"version": "1.0.0",
"description": "The backend api for the news-blog project.",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"build": "rimraf dist && npm run tsc",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"",
"prestart": "npm run build",
"dev": "nodemon --exec npx ts-node index.ts",
"postinstall": "npm run build",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hoxtygen/news-blog-backend.git"
},
"keywords": [
"nodejs",
"typescript",
"postgresql",
"knex"
],
"author": "Wasiu Idowu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hoxtygen/news-blog-backend/issues"
},
"homepage": "https://github.com/Hoxtygen/news-blog-backend#readme",
"devDependencies": {
"@types/express": "github:types/express",
"@types/node": "^15.6.1",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"tslint": "^6.1.3"
},
"dependencies": {
"@types/pg": "^8.6.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"knex": "^0.95.6",
"pg": "^8.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.2"
},
"engines": {
"node": "16.3"
}
}