-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 847 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
{
"name": "photos-api",
"version": "1.0.0",
"description": "HTTP API for a photo storage app.",
"private": true,
"main": "index.js",
"author": "mat-sz <contact@matsz.dev>",
"license": "BSD-3-Clause-Clear",
"dependencies": {
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"hashids": "^2.1.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.0",
"sequelize": "^5.21.2",
"sqlite3": "^4.1.0",
"uuid": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"start": "node ."
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}