This repository was archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.25 KB
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
{
"name": "dex-kit",
"private": "true",
"version": "1.0.0",
"scripts": {
"start:trade": "PUBLIC_URL='/' yarn workspace trade start",
"start:trade:m": "PUBLIC_URL='/' REACT_APP_NETWORK_ENV=mainnet yarn workspace trade start",
"build:trade": "yarn workspace trade build",
"build:trade:m": "REACT_APP_NETWORK_ENV=mainnet yarn workspace trade build",
"lint-staged": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"workspaces": [
"apps/**",
"common/**",
"widgets/**"
],
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-class-static-block": "^7.13.11",
"@binance-chain/prettier-config": "^1.0.1",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"cypress": "^7.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^7.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@binance-chain/honeycomb": "1.1.0-alpha.309",
"@reduxjs/toolkit": "^1.5.1",
"@craco/craco": "^6.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-intl": "^5.15.8",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.3",
"ts-loader": "^8.1.0",
"web-vitals": "^1.0.1"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}