-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 973 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 973 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": "codersBoard",
"version": "1.0.0",
"main": "index.js",
"author": "esau.opr@gmail.com",
"license": "MIT",
"scripts": {
"start": "node ./index.js",
"develop": "nodemon -L --exec node ./index.js",
"token": "node ./utils/tokenGenerator.js",
"dbseed": "node ./database/seeds/databaseSeeder.js",
"docs": "apidoc -i ./app/controllers -o ./apidoc/"
},
"dependencies": {
"cross-env": "^3.2.4",
"dotenv": "^4.0.0",
"google-auth-library": "^0.10.0",
"joi": "^10.6.0",
"jsonwebtoken": "^7.4.1",
"kcors": "^2.2.1",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-jwt": "^3.2.2",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"moment": "^2.18.1",
"mongoose": "^4.10.8",
"winston": "^2.3.1"
},
"devDependencies": {
"apidoc": "^0.17.5",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"nodemon": "^1.11.0"
}
}