forked from sushiswap/sushiswap-legacy-frontend
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
82 lines (82 loc) · 2.56 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "sashimi",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@types/debounce": "^1.2.0",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"antd": "^4.2.2",
"axios": "^0.20.0",
"bignumber.js": "^9.0.0",
"debounce": "^1.2.0",
"numeral": "^2.0.6",
"react": "^16.13.1",
"react-circular-progressbar": "^2.0.3",
"react-countdown": "^2.2.1",
"react-countup": "^4.3.3",
"react-dom": "^16.13.1",
"react-if": "^3.4.3",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-use": "^15.3.4",
"styled-components": "^5.1.1",
"typescript": "^3.9.7",
"use-wallet": "^0.8.0",
"web3": "^1.2.11"
},
"scripts": {
"start": "cross-env REACT_APP_CHAIN_ENV=main craco start",
"start:kovan": "cross-env REACT_APP_CHAIN_ENV=kovan craco start",
"start:online-test": "cross-env REACT_APP_CHAIN_ENV=online-test craco start",
"build": "cross-env REACT_APP_CHAIN_ENV=main CI= GENERATE_SOURCEMAP=false craco build",
"build:kovan": "cross-env REACT_APP_CHAIN_ENV=kovan CI= GENERATE_SOURCEMAP=false craco build",
"build:online-test": "cross-env REACT_APP_CHAIN_ENV=online-test CI= GENERATE_SOURCEMAP=false craco build",
"pkg:online": "rm -rf build* && npm run build && tar -zcvf build-online.tar.gz build",
"pkg:online-test": "rm -rf build* && npm run build:online-test && tar -zcvf build-online-test.tar.gz build",
"pkg:kovan": "rm -rf build* && npm run build:kovan && tar -zcvf build-kovan.tar.gz build",
"test": "craco test",
"eject": "react-scripts eject",
"deploy": "yarn build && cp ./build/index.html ./build/200.html && surge ./build sushiswap.org",
"commit": "git-cz"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^5.6.4",
"@types/numeral": "0.0.28",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.2",
"babel-plugin-import": "^1.13.0",
"commitizen": "^4.2.1",
"craco-less": "^1.17.0",
"cross-env": "^7.0.2",
"git-cz": "^4.7.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"trailingComma": "all",
"semi": false,
"singleQuote": true
}
}