-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.23 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
{
"devDependencies": {
"@koa/cors": "^3.4.3",
"@koa/router": "^10.1.1",
"@openzeppelin/contracts": "^4.7.3",
"@shopify/jest-koa-mocks": "^5.0.1",
"@types/jest": "^29.2.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.13.5",
"@types/koa__cors": "^3.1.1",
"@types/koa__multer": "^2.0.4",
"@types/koa__router": "^8.0.11",
"@types/koa-bodyparser": "^4.3.5",
"@types/minimist": "^1.2.2",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"axios": "^0.27.2",
"dotenv": "^16.0.3",
"esbuild": "^0.15.12",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"husky": "^8.0.1",
"jest": "^29.2.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"lint-staged": "^13.0.3",
"minimist": "^1.2.7",
"nodemon": "^2.0.15",
"sharp": "^0.30.7",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"scripts": {
"prepare": "husky install",
"start": "node out.js start --config=.glider.json",
"deployLocal": "node out.js deploy"
},
"bin": {
"glider": "out.js"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"name": "ethsf",
"description": "This is the backend for ETH SF.",
"version": "1.1.1",
"main": "dist/tsc/src/main.js",
"directories": {
"test": "test"
},
"author": "jeffzwang",
"license": "MIT",
"types": "./dist/tsc/src/main.d.ts",
"dependencies": {
"@apollo/client": "^3.7.1",
"@iden3/js-iden3-auth": "^0.1.3-intermediate",
"@koa/multer": "^3.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@pinata/sdk": "^2.0.0",
"@pushprotocol/uiweb": "^0.2.3",
"@types/multer": "^1.4.7",
"@types/uuid": "^8.3.4",
"cross-fetch": "^3.1.5",
"graphql": "^16.6.0",
"multer": "^1.4.5-lts.1",
"react": "^18.2.0",
"solidity-bytes-utils": "^0.8.0",
"uuid": "^9.0.0"
}
}