forked from 0xProject/0x-launch-kit-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·111 lines (111 loc) · 3.89 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "0x-launch-kit-frontend",
"version": "0.3.0",
"private": true,
"dependencies": {
"@0x/connect": "^6.0.0",
"@0x/contract-wrappers": "^13.0.0",
"@0x/order-utils": "^9.0.0",
"@0x/orderbook": "^1.0.0",
"@0x/subproviders": "^6.0.0",
"@0x/utils": "^5.0.0",
"@0x/web3-wrapper": "^7.0.0",
"@toruslabs/torus-embed": "^1.6.0",
"@unilogin/provider": "^0.6.1",
"@walletconnect/web3-provider": "^1.0.11",
"async-retry": "^1.2.3",
"async-sema": "^3.0.0",
"authereum": "^0.0.4-beta.164",
"connected-react-router": "^6.2.2",
"history": "^4.7.2",
"http-proxy-middleware": "^0.19.1",
"jsonschema": "^1.2.4",
"logdown": "^3.2.8",
"query-string": "^6.4.0",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-modal": "^3.8.1",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "3.2.0",
"react-svg": "^10.0.9",
"react-timeago": "^4.4.0",
"react-tooltip": "^3.10.0",
"recharts": "^1.6.2",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"sanitize.css": "^8.0.0",
"styled-components": "^4.1.3",
"typesafe-actions": "^3.0.0",
"web3": "^1.2.9",
"web3modal": "^1.7.0"
},
"scripts": {
"start": "PORT=3001 react-scripts --max_old_space_size=4096 start",
"build:tsc": "tsc -b",
"build": "react-scripts --max_old_space_size=4096 build",
"test": "REACT_APP_NETWORK_ID=50 REACT_APP_CHAIN_ID=1337 react-scripts test --env=node",
"test-once": "cross-env REACT_APP_NETWORK_ID=50 REACT_APP_CHAIN_ID=1337 CI=true react-scripts test --coverage",
"lint": "tslint --format stylish --project . 'src/**/*.{ts,tsx}' && npm run prettier-check",
"eject": "react-scripts eject",
"prettier": "prettier --write '**/*.{ts,tsx,json,md}' --ignore-path .gitignore",
"prettier-check": "prettier --check '**/*.{ts,tsx,json,md}' --ignore-path .gitignore",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/src/assets/**"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@0x/tslint-config": "^4.0.0",
"@0x/types": "^3.0.0",
"@types/async-retry": "^1.4.1",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "24",
"@types/node": "10.12.19",
"@types/react": "16.8.15",
"@types/react-dom": "16.8.4",
"@types/react-modal": "^3.8.0",
"@types/react-redux": "^7.0.1",
"@types/react-router": "^4.4.3",
"@types/react-router-dom": "^4.3.1",
"@types/react-test-renderer": "^16.8.1",
"@types/react-timeago": "^4.1.0",
"@types/recharts": "^1.1.16",
"@types/redux-mock-store": "^1.0.0",
"@types/styled-components": "^4.1.6",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^3.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"factory.ts": "^0.4.3",
"husky": "^1.3.1",
"jest-enzyme": "^7.0.1",
"prettier": "^1.16.1",
"react-test-renderer": "^16.8.4",
"redux-mock-store": "^1.5.3",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^3.6.0",
"typescript": "3.2.4"
}
}