-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
46
47
48
{
"name": "api-koa",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon src/app.js --exec babel-node --delay 1500ms",
"test": "ava"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"bcrypt": "^5.0.0",
"dotenv": "^7.0.0",
"jwt-simple": "^0.5.6",
"knex": "^0.16.5",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.1.0",
"koa-morgan": "^1.0.1",
"koa-passport": "^4.1.3",
"koa-router": "^7.4.0",
"moment": "^2.24.0",
"mysql": "^2.17.1",
"node-notifier": "^5.4.0",
"objection": "^1.6.8",
"objection-db-errors": "^1.1.1",
"passport-jwt": "^4.0.0",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"ava": "^1.4.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.7.0",
"eslint-plugin-unicorn": "^8.0.2",
"nodemon": "^1.18.11"
}
}