-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathpackage.json
128 lines (128 loc) · 3.86 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
122
123
124
125
126
127
128
{
"name": "client",
"version": "6.7.29",
"private": true,
"license": "GPL-3.0",
"author": "0xPARC <[email protected]>",
"dependencies": {
"@darkforest_eth/constants": "6.7.29",
"@darkforest_eth/contracts": "6.7.29",
"@darkforest_eth/events": "6.7.29",
"@darkforest_eth/gamelogic": "6.7.29",
"@darkforest_eth/hashing": "6.7.29",
"@darkforest_eth/hexgen": "6.7.29",
"@darkforest_eth/network": "6.7.29",
"@darkforest_eth/procedural": "6.7.29",
"@darkforest_eth/renderer": "6.7.29",
"@darkforest_eth/serde": "6.7.29",
"@darkforest_eth/settings": "6.7.29",
"@darkforest_eth/snarks": "6.7.29",
"@darkforest_eth/types": "6.7.29",
"@darkforest_eth/ui": "6.7.29",
"@darkforest_eth/whitelist": "6.7.29",
"@lit-labs/react": "^1.0.0",
"animejs": "^3.2.1",
"auto-bind": "^4.0.0",
"bad-words": "^3.0.4",
"big-integer": "^1.6.48",
"canvas-confetti": "^1.4.0",
"color": "^3.0.2",
"delay": "^5.0.0",
"email-validator": "^2.0.4",
"emoji-picker-react": "^3.4.8",
"ethers": "^5.5.1",
"events": "^3.0.0",
"fastq": "^1.10.0",
"file-saver": "^2.0.5",
"gl-matrix": "^3.3.0",
"htm": "^3.0.4",
"idb": "^5.0.1",
"js-quadtree": "^3.3.5",
"json-stable-stringify": "^1.0.1",
"jszip": "^3.5.0",
"lodash": "^4.17.15",
"mnemonist": "^0.38.1",
"p-defer": "^3.0.0",
"p-timeout": "^4.0.0",
"preact": "^10.5.13",
"prismjs": "^1.22.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loader-spinner": "^4.0.0",
"react-router-dom": "^5.3.0",
"react-simple-code-editor": "^0.11.0",
"react-sortablejs": "^6.0.0",
"react-timeago": "^6.2.1",
"sortablejs": "^1.10.2",
"styled-components": "^5.3.3",
"ts-dedent": "^2.0.0",
"uuid": "^8.3.2"
},
"scripts": {
"declarations": "tsc -p tsconfig.decs.json",
"test": "exit 0",
"lint": "eslint .",
"format": "prettier --write .",
"start": "webpack-dev-server --mode development --hot",
"build": "webpack --mode production",
"clean": "del-cli dist node_modules declarations public/contracts tsconfig.ref.tsbuildinfo",
"docs": "typedoc && yarn format",
"deploy": "netlify build && netlify deploy",
"deploy:prod": "netlify build && netlify deploy --prod"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/animejs": "^3.1.3",
"@types/color": "^3.0.2",
"@types/gl-matrix": "^3.2.0",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.160",
"@types/prismjs": "^1.16.2",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/react-timeago": "^4.1.3",
"@types/sortablejs": "^1.10.6",
"@types/styled-components": "^5.1.15",
"@types/uuid": "^8.3.0",
"@types/webpack-env": "^1.16.3",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^2.0.5",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.1",
"del-cli": "^4.0.1",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"html-webpack-plugin": "^5.5.0",
"netlify-cli": "^3.8.5",
"prettier": "^2.3.0",
"raw-loader": "^4.0.2",
"resolve-package-path": "^4.0.3",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"typedoc": "^0.22.8",
"typedoc-plugin-markdown": "3.11.x",
"typescript": "4.5.x",
"webpack": "^5.62.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}