-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"private": true,
"workspaces": [
"tinlake-bot",
"e2e-tests",
"onboarding-api",
"onboarding-app",
"tinlake-ui",
"tinlake.js",
"gateway",
"gateway/packages/lib",
"gateway/packages/ui",
"gateway/packages/server",
"onboarding-ui"
],
"devDependencies": {
"@types/concurrently": "^5",
"babel-plugin-styled-components": "1.12.0",
"concurrently": "^5.3.0",
"husky": "^6.0.0",
"prettier": "^2.3.1",
"prettier-plugin-organize-imports": "1.1.1",
"pretty-quick": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "~4.4.4"
},
"dependencies": {
"@sendgrid/mail": "^7.6.2",
"bn.js": "5.1.3",
"dotenv": "8.2.0",
"ethers": "5.4.7"
},
"scripts": {
"format:run": "cd $INIT_CWD && prettier --write \"./**/*.{ts,tsx}\"",
"format:check": "cd $INIT_CWD && prettier --check \"./**/*.{ts,tsx}\"",
"publish:develop": "yarn workspaces foreach run prepublish && lerna publish --canary --preid develop.$(git rev-parse --short HEAD) --yes --force-publish",
"onboarding-api": "yarn workspace @centrifuge/onboarding-api start",
"onboarding-ui": "yarn workspace @centrifuge/onboarding-ui start",
"tinlake-ui": "yarn workspace @centrifuge/tinlake-ui start",
"start": "concurrently --kill-others-on-fail \"yarn onboarding-api\" \"yarn tinlake-ui\" -p name -n \"onboarding-api,tinlake-ui\"",
"postinstall": "npx husky install"
},
"resolutions": {
"typescript": "~4.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@types/react": "^17.0.30",
"@types/eslint": "7.28.0",
"ts-node": "^10.9.2"
}
}