-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "mp_clone_backend",
"version": "1.0.0",
"description": "mango plate clone coding project",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "npx nodemon ./index.js",
"crawl": "npx nodemon ./crawl.js",
"crawl2": "npx nodemon ./crawl2.js"
},
"repository": "git+https://github.com/dennis9352/MP_CloneCoding_backend.git",
"keywords": [],
"author": "고수진 이경원",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.950.0",
"bson-objectid": "^2.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"fuse.js": "^6.4.6",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^2.0.12",
"npm": "^7.19.1",
"passport": "^0.4.1",
"passport-kakao": "^1.0.1",
"puppeteer": "^10.1.0",
"request": "^2.88.2"
},
"type": "module",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "2.3.2",
"supertest": "^6.1.4"
}
}