-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
48
49
50
51
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"test": "jest",
"build": "tsc",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@types/axios": "^0.14.0",
"@types/node-fetch": "^2.5.7",
"@types/pg": "^7.14.3",
"axios": "^0.19.2",
"jssoup": "0.0.11",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-cors": "^0.0.16",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^8.0.8",
"neo4j-driver": "^4.1.0",
"node-fetch": "^2.6.0",
"pg": "^8.1.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/koa": "^2.11.3",
"@types/koa__cors": "^3.0.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-cors": "^0.0.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.0",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.3.0",
"nodemon": "^2.0.18",
"prettier": "^2.0.4",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}