-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "camera",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon app.js",
"seed": "node models/seeds/cameraSeeder.js",
"eslintInit": "eslint --init",
"lint": "eslint --fix ."
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robert1074004/camera.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/robert1074004/camera/issues"
},
"homepage": "https://github.com/robert1074004/camera#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"dayjs": "^1.10.6",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.17.1",
"express-validator": "^7.0.1",
"google-auth-library": "^7.14.1",
"googleapis": "^105.0.0",
"imgur": "^1.0.2",
"method-override": "^3.0.0",
"multer": "^1.4.3",
"mysql2": "^2.3.0",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.20",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"sequelize": "^6.6.5",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"pre-commit": "^1.2.2"
}
}