forked from darkforest-eth/client
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.4 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
80
81
82
83
84
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.0.5",
"@ethersproject/providers": "5.0.2",
"@types/lodash": "4.14.159",
"auto-bind": "^4.0.0",
"big-integer": "^1.6.48",
"csv-parse": "^4.10.1",
"email-validator": "^2.0.4",
"es6-promisify": "^6.1.1",
"ethers": "5.0.7",
"events": "^3.0.0",
"global": "^4.4.0",
"html-react-parser": "^0.13.0",
"idb": "^5.0.1",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.15",
"lz-string": "^1.4.4",
"normalize.css": "^8.0.1",
"react": "^16.9.0",
"react-dom": "^16.12.0",
"react-icons": "^3.9.0",
"react-router-dom": "^5.1.2",
"react-spinkit": "^3.0.0",
"react-typist": "^2.0.5",
"react-use": "^13.27.1",
"snarkjs": "^0.3.33",
"socket.io-client": "^2.3.0",
"styled-components": "^5.0.1",
"websnark": "0.0.5",
"yargs": "^15.1.0"
},
"scripts": {
"start:dev": "webpack-dev-server --mode development --open --hot",
"start:prod": "webpack-dev-server --mode production --open --hot",
"build": "webpack --mode production"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-react": "^7.8.3",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.3",
"@types/socket.io-client": "^1.4.33",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.2.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"script-loader": "^0.7.2",
"source-map-loader": "^0.2.4",
"speed-measure-webpack-plugin": "^1.3.1",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"typescript-plugin-styled-components": "^1.4.4",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.9.0",
"worker-loader": "^2.0.0"
}
}