-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "kaffescoreboard-api",
"version": "1.0.0",
"description": "API for scoreboard for hvem som brygger mest kaffe på Abakus sitt kontor.",
"main": "src/index.js",
"scripts": {
"start": "nodemon --exec babel-node api/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"webserver": "nodemon --exec babel-node api/server.js",
"start:rfid": "nodemon --exec babel-node ./testRfid/test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/asmundh/kaffescoreboard-api.git"
},
"author": "asmundh",
"license": "pay to use",
"bugs": {
"url": "https://github.com/asmundh/kaffescoreboard-api/issues"
},
"homepage": "https://github.com/asmundh/kaffescoreboard-api#readme",
"dependencies": {
"@babel/preset-typescript": "^7.9.0",
"@koa/cors": "^2.2.3",
"axios": "^0.19.2",
"joi": "^14.3.1",
"koa": "^2.12.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"mongodb": "^3.5.7",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.10.0",
"@babel/preset-react": "^7.10.0",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.4"
}
}