-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"private": true,
"workspaces": [
"fabric",
"centrifuge-js",
"centrifuge-app",
"centrifuge-react",
"simulation-tests",
"onboarding-api",
"faucet-api",
"pinning-api"
],
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/concurrently": "^5",
"babel-plugin-styled-components": "1.12.0",
"concurrently": "^5.3.0",
"esbuild": "^0.16.17",
"esbuild-node-externals": "^1.6.0",
"husky": "^6.0.0",
"prettier": "^2.3.1",
"prettier-plugin-organize-imports": "1.1.1",
"pretty-quick": "^3.1.1",
"ts-node": "9.0.0",
"typescript": "~4.4.4"
},
"dependencies": {
"@polkadot/api": "~10.3.4",
"@polkadot/types": "~10.3.4",
"@polkadot/util-crypto": "^11.1.3",
"@sendgrid/mail": "^7.7.0",
"bn.js": "^5.2.1",
"dotenv": "16.0.3",
"rxjs": "^7.8.0"
},
"scripts": {
"format:run": "cd $INIT_CWD && prettier --write \"./**/*.{ts,tsx}\"",
"format:check": "cd $INIT_CWD && prettier --check \"./**/*.{ts,tsx}\"",
"onboarding-api": "yarn workspace @centrifuge/onboarding-api start:functions",
"pinning-api": "yarn workspace @centrifuge/pinning-api start:functions",
"centrifuge-app": "yarn workspace @centrifuge/centrifuge-app start",
"faucet-api": "yarn workspace @centrifuge/faucet-api start",
"start": "concurrently --kill-others-on-fail \"yarn onboarding-api\" \"yarn pinning-api\" \"yarn centrifuge-app\" -p name -n \"onboarding-api,pinning-api,centrifuge-app\"",
"postinstall": "npx husky install"
},
"resolutions": {
"typescript": "~4.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@types/react": "^18.0.27",
"@types/eslint": "7.28.0"
}
}