-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 833 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 833 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
{
"name": "nodejs-users-api",
"version": "1.0.0",
"description": "Users API management on Node.js",
"main": "index.js",
"scripts": {
"build": "babel app.js out-file index-compiled.js",
"start": "nodemon --exec babel-node app.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/node": "^7.16.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "*"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-jest": "^27.3.1",
"babel-plugin-root-import": "^6.6.0",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"mock-fs": "^5.1.2",
"regenerator-runtime": "^0.13.9",
"sequelize-cli": "^6.3.0",
"supertest": "^6.1.6"
}
}