-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.59 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
{
"name": "metawall-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=prod node ./dist/bin/server.js",
"prod": "npm run build && cross-env NODE_ENV=prod node ./dist/bin/server.js",
"dev": "cross-env NODE_ENV=dev nodemon ./bin/server.ts",
"fmt": "prettier --config .prettierrc --write **/*.ts",
"build": "tsc"
},
"dependencies": {
"@types/lodash": "^4.14.182",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.2",
"http-errors": "~1.6.3",
"image-size": "^1.0.2",
"imgur": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.4.0",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.18",
"ts-custom-error": "^3.2.0",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.0",
"@types/passport": "^1.0.8",
"@types/passport-facebook": "^2.1.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/validator": "^13.7.4",
"patch-package": "^6.4.7",
"prettier": "2.7.1"
}
}