-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1.14 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
{
"name": "anon-image",
"version": "1.0.0",
"description": "Web app for uploading anonymous password protected and easily shareable images ",
"main": "index.js",
"scripts": {
"start": "node .",
"watch": "nodemon .",
"db:setup": "node scripts/database/setupDatabase.js",
"db:drop": "node scripts/database/deleteDatabase.js",
"format": "npx prettier --write .",
"build": "webpack"
},
"keywords": [],
"author": "lean",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.6.0",
"express": "^4.17.2",
"express-rate-limit": "^5.5.1",
"moment": "^2.29.1",
"mysql2": "^2.3.3",
"shortid": "^2.2.16"
},
"devDependencies": {
"bootstrap": "^4.6.1",
"check-password-strength": "^1.0.15",
"css-loader": "^5.2.7",
"file-upload-with-preview": "^4.2.0",
"jquery": "^3.6.0",
"nodemon": "^2.0.15",
"popper.js": "^1.16.1",
"prettier": "2.1.2",
"style-loader": "^2.0.0",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
}
}