-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 948 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
38
39
40
41
42
{
"name": "leave-a-note",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "npm run lint",
"start": "node server.js",
"lint": "semistandard --verbose | snazzy",
"format": "prettier-semi --write '**/*.js'",
"watch": "nodemon server.js",
"fix": "npx semistandard --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sequelize": "^6.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"prettier-semi-cli": "^1.0.0",
"semistandard": "^16.0.0",
"snazzy": "^9.0.0"
},
"semistandard": {
"globals": [
"$"
]
}
}