-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 KB
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
{
"name": "nodeAPI",
"version": "1.0.0",
"description": "A node API covering postgres database, creating model with sequelize and authentication with jwt.",
"main": "index.js",
"scripts": {
"start": "node src/bin/www",
"devstart": "babel-watch src/bin/dev",
"build": "rm -rf dist && mkdir dist && babel src -s -d dist",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "sequelize db:migrate",
"reset-db": "sequelize db:migrate:undo:all",
"seeder": "sequelize db:seed:all",
"relTest": "cd ./src/database/seeders&& node testModels&& node testList&& node queries"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debelistic/nodeAPI.git"
},
"keywords": [],
"author": "Victor Awotidebe",
"license": "ISC",
"bugs": {
"url": "https://github.com/debelistic/nodeAPI/issues"
},
"homepage": "https://github.com/debelistic/nodeAPI#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-watch": "^7.0.0"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.18.1",
"sequelize-cli": "^5.5.0"
}
}