-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 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
45
46
47
48
49
50
51
52
53
{
"name": "express-starter",
"version": "1.0.0",
"description": "Starter Project For Build Rest API using Express JS For Create CRUD Action with PostgreSQL using Sequelize and support JWT Authentication",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "nodemon index.js",
"postgres-init": "initdb ~/pg",
"postgres-start": "pg_ctl -D ~/pg start",
"migrate": "npx sequelize-cli db:migrate",
"seeding": "npx sequelize-cli db:seed:all --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/or-abdillh/express-starter.git"
},
"keywords": [
"PostgreSQL",
"Sequelize",
"API",
"express",
"nodejs",
"node"
],
"author": "Oka R. Abdillah",
"license": "MIT",
"bugs": {
"url": "https://github.com/or-abdillh/express-starter/issues"
},
"homepage": "https://github.com/or-abdillh/express-starter#readme",
"dependencies": {
"body-parser": "^1.20.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"nodemon": "^2.0.16",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.19.2"
},
"devDependencies": {
"sequelize-cli": "^6.4.1"
},
"engines": {
"node": ">=16",
"npm": ">=8"
}
}