forked from samanthalynnes/Project_2_Epic_Adventure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 814 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
{
"name": "node-handlebars-boilerplate",
"version": "1.0.0",
"description": "Project 2 Starter",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"lint": "eslint --quiet .",
"lint:fix": "eslint --fix .",
"test": "npm run lint && cross-env NODE_ENV=test mocha --reporter spec --exit"
},
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mysql2": "^2.0.2",
"pug": "^2.0.4",
"sequelize": "^5.21.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"sequelize-cli": "^5.5.1"
}
}