-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
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": "echo-back",
"version": "1.0.0",
"description": "Backend for Dimigo SNS, ECHO",
"main": "index.js",
"scripts": {
"start": "nodemon index.js --exec babel-node",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "Seohun Uhm <uhmtotow@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"babel-plugin-root-import": "^6.4.1",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express-swagger-generator": "^1.1.15",
"nodemon": "^1.19.4",
"standard": "^14.3.1"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"express-validator": "^6.1.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.8"
},
"repository": {
"type": "git",
"url": "https://github.com/echo-dimigo/echo-back.git"
}
}