-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
34 lines (34 loc) · 946 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
{
"name": "full-stack-sequelize",
"version": "1.0.0",
"description": "A full-stack application template using node, express, and sequelize",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"lint": "eslint \"./**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kylewhittemore/full-stack-sequelize.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kylewhittemore/full-stack-sequelize/issues"
},
"homepage": "https://github.com/kylewhittemore/full-stack-sequelize#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mysql2": "^2.1.0",
"nodemon": "^2.0.2",
"sequelize": "^5.21.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1"
}
}