-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "caspersign-server",
"version": "1.0.0",
"description": "CasperSign backend",
"main": "dist/index.js",
"engines": {
"node": "14"
},
"scripts": {
"eslint": "eslint src/index.ts",
"build": "tsc --skipLibCheck",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"dev": "ts-node ./src/index.ts",
"start": "node dist/index.js",
"db-sync": "cross-env DB_SYNC=true ts-node ./src/db/dbSync.ts",
"fix-lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix",
"build-release": "npm run build && mkdir -p dist_temp && cp -r dist/* dist_temp/ && git checkout release && rimraf dist && mkdir -p dist && cp -r dist_temp/* dist/ && rimraf dist_temp"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"atob": "^2.1.2",
"axios": "^0.21.1",
"body-parser": "1.19.0",
"casper-client-sdk": "^1.3.0",
"casper-js-sdk": "^2.15.2",
"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.29",
"express": "4.17.1",
"express-form-data": "^2.0.16",
"express-http-proxy": "^1.6.2",
"hellosign-sdk": "^1.6.1",
"ip-regex": "^4.3.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"morgan": "^1.10.0",
"nodemon": "2.0.6",
"pdf2json": "^1.2.1",
"pg": "^8.5.1",
"request-ip": "^2.1.3",
"swagger-ui-express": "4.1.6",
"typeorm": "^0.2.32",
"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/express-form-data": "^2.0.1",
"@types/express-http-proxy": "^1.6.1",
"@types/faker": "^5.1.5",
"@types/hapi__joi": "17.1.6",
"@types/hellosign-sdk": "^1.6.1",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "26.0.19",
"@types/lodash": "^4.14.168",
"@types/memory-cache": "^0.2.1",
"@types/morgan": "^1.9.2",
"@types/node": "14.14.14",
"@types/request-ip": "0.0.35",
"@types/supertest": "2.0.10",
"@types/swagger-ui-express": "4.1.2",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"cross-env": "^7.0.3",
"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",
"rimraf": "^3.0.2",
"supertest": "6.0.1",
"ts-jest": "26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}