-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 908 Bytes
/
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
{
"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",
"aws-sdk": "^2.1250.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.1",
"multer-s3": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.7.1"
}
}