-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 949 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 949 Bytes
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
{
"name": "node-express-postgresql-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"start": "node ./build/index.js",
"build-server": "babel -d ./build ./src -s",
"build": "npm run clean && npm run build-server",
"clean": "rm -rf build && mkdir build",
"test": "echo \"No test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"nodemon": "^2.0.3"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.21.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mout": "^2.0.0-alpha.1",
"pg": "^8.0.3",
"regenerator-runtime": "^0.13.7",
"sequelize": "4.44"
}
}