-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "linr_backend",
"version": "1.0.0",
"description": "Backend for Linr",
"main": "backend/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development node ./backend/index.js",
"production": "cross-env NODE_ENV=production node ./backend/index.js",
"test": "cross-env NODE_ENV=test mocha --exit",
"docs": "jsdoc backend/ --readme README.md -c jsdoc.json -r"
},
"author": "Ivan Dardi <ivanbdardi at gmail.com>",
"dependencies": {
"axios": "^0.17.1",
"cross-env": "^5.1.1",
"egg-logger": "^1.6.0",
"jsdoc": "^3.5.5",
"knex": "^0.13.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.0.1",
"koa-onerror": "^3.1.0",
"koa-passport": "git+https://github.com/rkusa/koa-passport.git",
"koa-router": "^7.2.1",
"koa-session2": "^2.2.5",
"koa2-cors": "^2.0.3",
"passport-local": "^1.0.0",
"pg": "^7.4.0",
"utility": "^1.12.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^4.0.1"
}
}