-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "infoskjerm-api",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"start": "npm run webserver",
"webserver": "nodemon src/index.js --exec babel-node",
"build": "babel src -d dist",
"serve": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^2.0.4"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@koa/cors": "^2.2.3",
"axios": "^0.19.0",
"babel-eslint": "^10.0.1",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"x-ray": "^2.3.4"
}
}