This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "bd-celo",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint": "eslint --fix . --ext .ts,.tsx,.js,.jsx",
"pretest": "npm run lint --silent",
"post-pr": "eslint --ext js,jsx,ts,tsx ."
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"@celo/celocli": "^1.2.0",
"@celo/contractkit": "^1.2.0",
"@celo/utils": "^1.2.1",
"@types/meteor": "^1.4.70",
"abi-decoder": "^2.3.0",
"apollo-client": "^2.6.10",
"apollo-server-express": "^2.25.0",
"apollo-type-bigint-fix": "^0.1.2",
"bignumber.js": "^9.0.1",
"cross-fetch": "^3.1.4",
"express": "^4.17.1",
"graphql": "^15.4.0",
"graphql-type-json": "^0.3.2",
"meteor-node-stubs": "^1.0.3",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"numbro": "^2.3.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"web3": "^1.3.5",
"web3-eth-contract": "^1.3.6"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-meteor": "^7.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0"
},
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor"
}
}