-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "express-template",
"version": "1.0.0",
"description": "This is my express template",
"main": "app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "concurrently \" nodemon dist/server.js\" \" tsc -w\"",
"build": "SET NODE_ENV=production",
"publish": "git pull && git push",
"debug": "ndb dist/server.js",
"watch:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js --public-url /js",
"build:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js --public-url /js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-mongo-sanitize": "^2.0.1",
"express-rate-limit": "^5.2.3",
"helmet": "^4.2.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.15",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.1",
"nodemon": "^2.0.6",
"pug": "^3.0.1",
"sharp": "^0.30.5",
"slugify": "^1.4.6",
"ts-node": "^9.1.0",
"typescript": "^4.1.2",
"validator": "^13.7.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/express-mongo-sanitize": "^1.3.2",
"@types/express-rate-limit": "^5.1.0",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.2",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.4",
"@types/nodemailer": "^6.4.0",
"@types/sharp": "^0.26.1",
"@types/validator": "^13.1.1",
"ndb": "^1.1.5",
"parcel-bundler": "^1.12.4"
}
}