-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.11 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
{
"name": "arbor-backend",
"version": "1.4.9",
"private": true,
"dependencies": {
"@hapi/joi": "17.1.1",
"@sendgrid/mail": "7.3.0",
"@truffle/hdwallet-provider": "1.1.1",
"@types/express": "4.17.8",
"@types/jest": "26.0.13",
"@windingtree/org.id": "1.1.5",
"@windingtree/org.id-resolver": "2.4.1",
"@windingtree/org.json-schema": "0.3.4",
"ajv": "6.12.6",
"axios": "0.21.1",
"body-parser": "1.19.0",
"chalk": "4.1.0",
"cheerio": "1.0.0-rc.3",
"command-line-args": "5.1.1",
"cors": "2.8.5",
"ethereumjs-abi": "0.6.8",
"ethers": "5.1.3",
"express": "4.17.1",
"express-http-proxy": "1.6.2",
"express-rate-limit": "5.2.6",
"helmet": "4.5.0",
"ip": "1.1.5",
"ipfs-http-client": "46.1.2",
"jose": "2.0.5",
"js-sha3": "0.8.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.20",
"log4js": "6.3.0",
"moment": "2.29.1",
"morgan": "1.10.0",
"multer": "1.4.2",
"mysql2": "2.2.5",
"node-fetch": "2.6.1",
"node-watch": "0.6.4",
"pg": "8.4.2",
"qs": "6.9.4",
"request": "2.88.2",
"request-promise": "4.2.6",
"sequelize": "6.3.5",
"stripe": "8.119.0",
"swagger-ui-express": "4.1.4",
"url": "0.11.0",
"web3": "1.3.5",
"winston": "3.3.3",
"yamljs": "0.3.0",
"zos-lib": "2.4.3"
},
"devDependencies": {
"eslint": "7.12.1",
"jest": "26.4.2",
"jest-teamcity-reporter": "0.9.0",
"random-words": "1.1.1",
"sequelize-cli": "6.2.0"
},
"jest": {
"testResultsProcessor": "jest-teamcity-reporter",
"testPathIgnorePatterns": [
"/node_modules/",
"/test.js"
]
},
"scripts": {
"test": "jest",
"start": "node server.js",
"start:dev": "NODE_ENV=dev node server.js",
"mysql": "docker-compose -f ./docker-compose.dev.yaml up",
"ipfs:start:nodaemon": "docker-compose -f ./docker-compose.ipfs.yaml up",
"ipfs:start": "docker-compose -f ./docker-compose.ipfs.yaml up -d",
"ipfs:stop": "docker-compose -f ./docker-compose.ipfs.yaml down",
"ipfs:exec": "docker exec ipfs_host ipfs"
},
"engines": {
"node": ">=10.x"
}
}