-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
41
42
43
44
{
"name": "image-sharing",
"version": "1.0.0",
"description": "A simple image sharing app",
"main": "app.js",
"scripts": {
"test": "mocha",
"dev": "nodemon app.js",
"start": "nodemon app.js",
"load:db": "BASH read -p \"Are you sure? \" -n 1 -r;sqlite3 ./db/image-uploader.db < db_schema.sql"
},
"author": "Max",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^5.19.1",
"better-sqlite3": "^7.5.1",
"better-sqlite3-session-store": "^0.0.3",
"cookie-parser": "^1.4.6",
"cross-fetch": "^3.1.5",
"date-format": "^4.0.7",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"express-ws": "^5.0.2",
"md5": "^2.3.0",
"multer": "^1.4.4",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"pg": "^8.7.3",
"pug": "^3.0.2",
"req-flash": "^0.0.3",
"sharp": "^0.30.3",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2",
"ws": "^8.5.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.13.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.15"
}
}