-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "lemme-api",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test-watch": "node node_modules/.bin/jest --watch",
"dev": "nodemon -r dotenv/config server/index.js dotenv_config_path=config/secrets.env"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/miksturait/lemme-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/miksturait/lemme-api/issues"
},
"homepage": "https://github.com/miksturait/lemme-api#readme",
"dependencies": {
"@koa/cors": "^2.2.2",
"dotenv": "^6.0.0",
"joi": "^13.6.0",
"jsonapi-serializer": "^3.5.6",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.11",
"mongoose": "^5.2.11",
"nodemon": "^1.18.4",
"socket.io": "^2.1.1"
},
"devDependencies": {
"jest": "^23.5.0",
"supertest": "^3.1.0"
}
}