forked from afrijaldz/express-sequelize-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 891 Bytes
/
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
{
"name": "express-sequelize-starter",
"version": "1.0.0",
"description": "express starter with sequlize orm",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./node_modules/.bin/nodemon app.js"
},
"keywords": [
"nodejs",
"node",
"express",
"sequlize",
"mysql"
],
"author": "Afrijal Dzuhri",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"lodash": "^4.17.10",
"mysql2": "^1.5.3",
"sequelize": "^4.38.0",
"sequelize-cli": "^4.0.0"
},
"devDependencies": {
"eslint": "^5.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"nodemon": "latest",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0"
}
}