-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
{
"name": "base-nodejs-project-gcp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"standard": {
"ignore": [
"/src/database/migrations/*.js",
"/src/database/models/*.js"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"standard": "standard | snazzy",
"standard:fix": "standard --fix",
"start": "node index.js",
"dev": "nodemon index.js",
"db:migrate": "sequelize db:migrate",
"db:migrate:production": "sequelize db:migrate --env production",
"db:drop": "sequelize db:drop",
"db:create": "sequelize db:create",
"db:update": "npm run db:drop && npm run db:create && npm run db:migrate",
"generate": "node ./tools/generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniel7byte/base-nodejs-project-gcp.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daniel7byte/base-nodejs-project-gcp/issues"
},
"homepage": "https://github.com/daniel7byte/base-nodejs-project-gcp#readme",
"dependencies": {
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.28.0",
"snazzy": "^9.0.0"
},
"devDependencies": {
"generate-template-files": "^3.2.1",
"sequelize-cli": "^6.5.2",
"standard": "^17.0.0"
}
}