-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "clean-boilerplate",
"version": "1.0.0",
"description": "nodejs boilerplate that follows Clean Architecture principles",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint ./",
"db:migrate": "npx sequelize db:migrate",
"db:migrate:create": "npx sequelize migration:generate --name",
"db:migrate:undo": "npx sequelize db:migrate:undo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uzair004/node-clean-boilerplate.git"
},
"keywords": [
"nodejs",
"clean",
"boilerplate"
],
"author": "Muhammad Uzair",
"license": "ISC",
"bugs": {
"url": "https://github.com/uzair004/node-clean-boilerplate/issues"
},
"homepage": "https://github.com/uzair004/node-clean-boilerplate#readme",
"dependencies": {
"convict": "^6.2.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-bunyan-logger": "^1.3.3",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.2.0",
"sequelize": "^6.28.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"sequelize-cli": "^6.6.0"
}
}