forked from darkforest-eth/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.65 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
112
113
114
115
116
117
118
119
120
121
{
"name": "client",
"version": "6.1.27",
"private": true,
"license": "GPL-3.0",
"author": "Clown Town Labs Inc. <brian@clowntown.dev>",
"dependencies": {
"@darkforest_eth/constants": "6.1.27",
"@darkforest_eth/contracts": "6.1.27",
"@darkforest_eth/hashing": "6.1.27",
"@darkforest_eth/hexgen": "6.1.27",
"@darkforest_eth/serde": "6.1.27",
"@darkforest_eth/snarks": "6.1.27",
"@darkforest_eth/types": "6.1.27",
"@hot-loader/react-dom": "^17.0.1",
"@types/animejs": "^3.1.3",
"animejs": "^3.2.1",
"auto-bind": "^4.0.0",
"bad-words": "^3.0.4",
"big-integer": "^1.6.48",
"canvas-confetti": "^1.4.0",
"email-validator": "^2.0.4",
"ethers": "^5.0.7",
"events": "^3.0.0",
"fastq": "^1.10.0",
"gl-matrix": "^3.3.0",
"htm": "^3.0.4",
"idb": "^5.0.1",
"js-quadtree": "^3.3.5",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.15",
"mnemonist": "^0.38.1",
"preact": "^10.5.13",
"prismjs": "^1.22.0",
"react": "^16.9.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.13.0",
"react-icons": "^3.9.0",
"react-router-dom": "^5.1.2",
"react-simple-code-editor": "^0.11.0",
"react-sortablejs": "^6.0.0",
"sortablejs": "^1.10.2",
"styled-components": "^5.0.1",
"timeago.js": "^4.0.2",
"ts-dedent": "^2.0.0",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.8.1",
"uuid": "^8.3.2"
},
"scripts": {
"prepare": "tsc --emitDeclarationOnly",
"test": "exit 0",
"lint": "eslint .",
"format": "prettier --write .",
"start:dev": "webpack-dev-server --mode development --open --hot",
"start:prod": "NODE_ENV=production webpack-dev-server --mode development --open --hot",
"build": "NODE_ENV=production webpack --mode production",
"clean": "rm -rf node_modules",
"docs": "typedoc && yarn format",
"deploy": "netlify build && netlify deploy",
"deploy:prod": "netlify build && netlify deploy --prod"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14 <16"
},
"devDependencies": {
"@babel/preset-react": "^7.8.3",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.160",
"@types/prismjs": "^1.16.2",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.3",
"@types/react-typist": "^2.0.1",
"@types/sortablejs": "^1.10.6",
"@types/styled-components": "^5.1.3",
"@types/uuid": "^8.3.0",
"@types/webgl2": "^0.0.5",
"@types/webpack-env": "^1.16.0",
"@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": "^7.26.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^6.0.0",
"file-saver": "^2.0.5",
"html-webpack-plugin": "^3.2.0",
"jszip": "^3.5.0",
"netlify-cli": "^3.8.5",
"prettier": "^2.3.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",
"webpack-merge": "^5.7.3",
"worker-loader": "^2.0.0"
}
}