-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
52
53
54
55
56
57
58
59
{
"name": "keeper-api",
"version": "1.0.0",
"description": "REST API for Keeper",
"main": "dist/index.js",
"engines": {
"node": "10.x"
},
"scripts": {
"eslint": "eslint src/server.ts",
"build": "tsc -p ./tsconfig.prod.json",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"dev": "ts-node ./src/server.ts",
"start": "node dist/src/server.js",
"test": "jest",
"fix-lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"atob": "^2.1.2",
"body-parser": "1.19.0",
"compression": "1.7.4",
"connection-string-parser": "^1.0.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "8.2.0",
"ethers": "^5.0.26",
"express": "4.17.1",
"keeper-db": "github:chronologic/keeper-db#v1.0.0",
"morgan": "^1.10.0",
"nodemon": "2.0.6",
"swagger-ui-express": "4.1.6",
"winston": "3.3.3"
},
"devDependencies": {
"@types/atob": "^2.1.2",
"@types/compression": "1.7.0",
"@types/cors": "^2.8.9",
"@types/express": "4.17.9",
"@types/faker": "^5.1.5",
"@types/hapi__joi": "17.1.6",
"@types/jest": "26.0.19",
"@types/morgan": "^1.9.2",
"@types/node": "14.14.14",
"@types/supertest": "2.0.10",
"@types/swagger-ui-express": "4.1.2",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"eslint": "7.16.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"jest-express": "1.12.0",
"supertest": "6.0.1",
"ts-jest": "26.4.4",
"ts-node": "^9.1.1",
"typescript": "4.1.3"
}
}