-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "shopping-mall",
"author": "team-n",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "nodemon index.js --exec babel-node"
},
"dependencies": {
"@sindresorhus/is": "^4.6.0",
"bcrypt": "^5.0.1",
"bulma": "^0.9.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.1",
"formidable": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^6.3.1",
"nanoid": "^3.3.4",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"nodemon": "^2.0.15"
},
"_moduleAliases": {
"@root": "src",
"@db": "src/db",
"@models": "src/db/models",
"@middlewares": "src/middlewares",
"@services": "src/services",
"@asyncHandler": "src/utils/async-handler",
"@error": "src/error/errorCode"
}
}