-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
45
46
47
48
49
50
{
"name": "100hours-project",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"start:prod": "NODE_ENV=production nodemon server.js",
"watch:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js --public-url /js",
"build:js": "parcel build ./public/js/index.js --out-dir ./public/js --out-file bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobertoF90/100hours-project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RobertoF90/100hours-project/issues"
},
"homepage": "https://github.com/RobertoF90/100hours-project#readme",
"dependencies": {
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.2.1",
"connect-mongo": "^4.6.0",
"crypto": "^1.0.1",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"mongoose": "^6.5.4",
"morgan": "^1.10.0",
"parcel": "^2.7.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2",
"uuid": "^9.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}