generated from kylewhittemore/full-stack-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.14 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
{
"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",
"seed": "npx sequelize-cli db:seed:all",
"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": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"express-handlebars": "^5.0.0",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.10",
"nodemon": "^2.0.2",
"sequelize": "^5.22.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-react": "^7.20.3"
}
}