-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
76 lines (76 loc) · 2.17 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
{
"name": "marketplace-api",
"version": "1.0.0",
"description": "Marketplace API",
"main": "index.js",
"scripts": {
"test": "mocha",
"migrate-save": "npx prisma migrate save --experimental",
"migrate-up": "npx prisma migrate up --experimental && npx prisma generate",
"dev": "nodemon server.js --quiet",
"postinstall": "npx patch-package",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maticnetwork/marketplace-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/maticnetwork/marketplace-api/issues"
},
"homepage": "https://github.com/maticnetwork/marketplace-api#readme",
"dependencies": {
"@0x/contract-wrappers": "^13.8.0",
"@0x/contracts-exchange": "^3.2.7",
"@0x/order-utils": "^10.3.0",
"@0x/subproviders": "^6.1.1",
"@0x/utils": "^5.5.1",
"@0x/web3-wrapper": "^7.2.0",
"@maticnetwork/dagger": "^0.2.0",
"@prisma/client": "^2.0.0-beta.5",
"babel": "^6.23.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"eth-sig-util": "^2.5.3",
"ethereumjs-util": "^7.0.1",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.1.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"pg": "^8.2.1",
"redis": "^3.0.2",
"request-promise": "^4.2.5",
"web3": "^1.2.8"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@prisma/cli": "^2.0.0-beta.7",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-watch": "^7.0.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^4.3.0",
"nodemon": "^2.0.4"
}
}