-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.82 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
62
63
{
"name": "node-express-postgresql",
"version": "1.0.0",
"description": "Simple example of how to integrate PostgreSQL with Node",
"keywords": [
"node postgresql",
"nodejs postgre sql",
"postgresql",
"rest node postgresql",
"postgresql sequelize",
"api postgresql node",
"express postgresql"
],
"author": "Al Diaz",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"start": "NODE_ENV=production ENVIRONMENT=prod node dist/index.js",
"dev": "ENVIRONMENT=dev nodemon --exec babel-node -- src/index.js",
"dev-build": "rimraf dist && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@babel/cli": "^7.15.7",
"@babel/preset-env": "^7.16.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.16.4",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.9.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-minify": "^0.5.1",
"eslint": "^6.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"rimraf": "^3.0.2"
}
}