-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
51
{
"name": "gbu-website",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"watch:js": "parcel watch ./public/form/js/index.js --out-dir ./public/js --out-file bundle.js",
"build:js": "parcel build ./public/form/js/index.js --out-dir ./public/js --out-file bundle.js",
"admin:js": "parcel watch ./js/admin/index.js --out-dir ./public/admin/js --out-file index.js",
"adminBuild:js": "parcel watch ./js/admin/index.js --out-dir ./public/admin/js --out-file index.js"
},
"author": "Ishan Varshney, Navneet Maurya",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.10.4",
"@types/dotenv": "^8.2.0",
"alert": "^5.0.1",
"async": "^3.2.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"ckeditor": "^4.12.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cropperjs": "^1.5.7",
"crypto": "^1.0.1",
"dotenv": "^6.2.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.0",
"googleapis": "^64.0.0",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.2",
"mongoose": "^5.9.23",
"multer": "^1.4.2",
"multer-gridfs-storage": "^3.3.0",
"mysql": "^2.18.1",
"nodemailer": "^6.4.10",
"pm2": "^4.4.0",
"prompt": "^1.0.0",
"validator": "^13.1.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"nodemon": "^2.0.2",
"parcel-bundler": "^1.12.4"
}
}