-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 951 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 951 Bytes
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
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "babel-node app/server",
"dev": "nodemon --exec 'yarn lint && yarn start'",
"lint": "eslint app",
"lint:fix": "eslint --fix app"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.6.1",
"eslint-config-google": "^0.10.0"
},
"dependencies": {
"bcrypt": "^3.0.1",
"config": "^2.0.1",
"dotenv": "^6.0.0",
"jsonwebtoken": "^8.3.0",
"keymirror": "^0.1.1",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.11",
"mongoose": "5.2.8",
"mongoose-unique-validator": "^2.0.2",
"nodemon": "^1.18.4"
}
}