-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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
{
"name": "node.js-express-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for building production-ready RESTful APIs using Node.js, Express, Typescript, and PostgreSQL",
"main": "dist/index.js",
"scripts": {
"start": "tsc && NODE_ENV=production tsc && ./node_modules/.bin/pm2 start dist/index.js --name ExpressBoilerplate",
"log:prod": "pm2 log ExpressBoilerplate",
"dev": "./node_modules/.bin/pm2 install typescript && NODE_ENV=development ./node_modules/.bin/pm2 start src/index.ts --name ExpressBoilerplateDev --watch",
"log:dev": "pm2 log ExpressBoilerplateDev",
"build": "tsc",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint . --ext .ts",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/techfarsi/Node.js-Express-boilerplate.git"
},
"keywords": [
"node.js",
"express",
"boilerplate",
"posgresql",
"typescript"
],
"author": "Tech Farsi <techfarsi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/techfarsi/Node.js-Express-boilerplate/issues"
},
"homepage": "https://github.com/techfarsi/Node.js-Express-boilerplate#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.17.1",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.25.5"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/node": "^18.11.9",
"@types/sequelize": "^4.28.14",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"pm2": "^5.2.2",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}