-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"name": "webscape",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "parcel serve index.html",
"dev-js": "parcel serve dist/ts/index.html",
"serve-prod": "serve dist",
"build": "parcel build index.html",
"build-hard": "rm -rf dist && parcel build index.html --no-source-maps",
"test": "jest",
"rs-test": "ts-jest",
"setup-js-build": "cp -r client_cache dist/ts && cp -r wasm dist/ts && cp index.html dist/ts",
"test-watch": "jest --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hot-loader/react-dom": "^16.13.0",
"@material-ui/core": "^4.11.0",
"@stardazed/zlib": "^1.0.1",
"@types/big-integer": "0.0.31",
"@types/file-saver": "^2.0.1",
"@types/long": "^4.0.1",
"@types/pako": "^1.0.1",
"@types/ws": "^6.0.4",
"axios": "^0.19.2",
"big-integer": "^1.6.48",
"cyclic-32": "^1.1.0",
"isaac-crypto": "^2.0.4",
"jpeg-js": "^0.3.7",
"long": "^4.0.0",
"pako": "^1.0.11",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"ws": "^7.3.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.58",
"@types/parcel-env": "0.0.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-hot-loader": "^4.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"jest": "^24.9.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-wasm.rs": "^1.2.16",
"rs-jest": "^1.1.0",
"serve": "^11.3.2",
"ts-jest": "^24.3.0",
"typescript": "^3.9.7"
}
}