-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 923 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
{
"name": "noted-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"dev": "nodemon ./bin/www",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@aws-sdk/client-s3": "^3.290.0",
"@aws-sdk/lib-storage": "^3.290.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.1",
"morgan": "~1.9.1"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.21",
"prettier": "2.8.4"
},
"lint-staged": {
"**/*.{js, jsx, html, css, json}": [
"prettier --write .",
"eslint --fix ."
]
}
}