forked from jumperexchange/jumper-exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "root",
"private": true,
"version": "1.0.0",
"repository": "https://github.com/lifinance/jumper.exchange",
"devDependencies": {
"@lerna/run": "^6.6.2",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lerna": "^7.1.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"scripts": {
"bootstrap": "yarn install; lerna bootstrap;",
"start": "lerna run start",
"dev": "lerna run dev --parallel",
"build": "lerna run build --parallel",
"storybook": "lerna run storybook",
"prepare": "husky install",
"pre-push": "lerna run pre-push",
"pre-commit": "yarn lint-staged && lerna run pre-commit"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}