-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "neps",
"version": "1.0.0",
"description": "Nodejs, Expressjs, Postgresql REST API Scaffolder",
"exports": "build/server.js",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "npm run build && node build/server.js",
"build": "chmod 600 .env && tsc",
"test": "echo no tests specified yet",
"lint": "prettier-standard --lint",
"lint:fix": "prettier-standard --staged --lint",
"migrate": "postgrator -c postgrator-config.mjs"
},
"keywords": [
"scaffolder",
"rest api"
],
"author": "Fernando L. Canizo <fernandocanizo@gmail.com> (https://github.com/fernandocanizo/)",
"license": "MIT",
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"pg": "^8.10.0",
"postgres": "^3.3.4"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^18.15.0",
"husky": "^8.0.3",
"postgrator-cli": "^6.0.1",
"prettier-standard": "^16.4.1",
"typescript": "^4.9.5"
}
}