-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
146 lines (146 loc) · 4.58 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "oraichain-studio",
"version": "1.0.0",
"description": "Oraichain Studio helps building smart contracts written in WebAssembly over the air",
"main": "index.js",
"scripts": {
"webpack": "cross-env NODE_OPTIONS='--openssl-legacy-provider' webpack",
"build": "yarn webpack --mode production --progress",
"build-watch": "yarn webpack --watch --mode development",
"start": "yarn webpack serve --mode development -d false --host 0.0.0.0 --hot",
"test": "yarn webpack --mode production && node bin/check-bundle-size.js && npm run jest && npm run tslint",
"test:ci": "node bin/check-bundle-size.js && npm run tslint && npm run coverage && npm run e2e && npm run coveralls",
"jest": "jest --maxWorkers=2",
"coverage": "jest --maxWorkers=2 --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"clean": "rm -r dist/*",
"tslint": "tslint -p ./tsconfig.json; tslint -p ./tsconfig.test.json",
"templates": "node ./bin/bundle-templates.js templates",
"mutate": "./node_modules/.bin/stryker run",
"e2e": "jest --maxWorkers=2 -c jest.e2e.config.json"
},
"jest": {
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"setupFiles": [
"<rootDir>/test-shim.js",
"<rootDir>/test-setup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/test-preprocessor.js"
},
"testMatch": [
"**/tests/**/**/**.spec.(ts|tsx|js)"
],
"collectCoverageFrom": [
"src/**/**.(ts|tsx|js)",
"!src/**/**.d.ts"
],
"testURL": "https://webassembly.studio/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wasdk/WebAssemblyStudio.git"
},
"author": "Mozilla Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/wasdk/WebAssemblyStudio/issues"
},
"homepage": "https://github.com/wasdk/WebAssemblyStudio",
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@cosmjs/crypto": "^0.29.5",
"@cosmjs/encoding": "^0.29.5",
"@oraichain/cosmwasm-vm-js": "^0.2.76",
"@uiw/react-codemirror": "^4.0.0",
"bech32": "^2.0.0",
"cassowary": "0.0.2",
"@oraichain/cosmwasm-vm-zk": "^0.1.3",
"elliptic": "^6.5.4",
"flux": "^3.1.3",
"get-port": "^5.1.1",
"history": "^5.0.0",
"immutable": "^4.2.0",
"jsonschema": "^1.4.1",
"jszip": "^3.10.1",
"jwt-decode": "^3.1.2",
"minimatch": "^3.0.4",
"monaco-editor": "^0.34.1",
"mousetrap": "^1.6.2",
"pako": "^1.0.7",
"raven-js": "^3.27.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-loader": "^4.13.1",
"react-icons": "^4.7.1",
"react-modal": "^3.6.1",
"request": "^2.88.2",
"secp256k1": "^4.0.3",
"shelljs": "^0.8.4",
"tar-js": "^0.3.0",
"tslint-react": "^5.0.0"
},
"devDependencies": {
"@hot-loader/react-dom": "17.0.2",
"@types/base64-js": "^1.2.5",
"@types/elliptic": "^6.4.14",
"@types/enzyme": "^3.1.15",
"@types/expect-puppeteer": "^2.2.4",
"@types/flux": "^3.1.8",
"@types/jest": "^22.1.4",
"@types/jest-environment-puppeteer": "^2.2.1",
"@types/jszip": "^3.4.1",
"@types/minimatch": "^3.0.3",
"@types/mousetrap": "^1.6.0",
"@types/pako": "^1.0.0",
"@types/puppeteer": "^1.10.1",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@types/react-icons": "^3.0.0",
"@types/react-modal": "^3.2.1",
"@types/request": "^2.48.5",
"@types/secp256k1": "^4.0.3",
"@types/webpack": "^5.28.0",
"base64-js": "^1.3.0",
"buffer": "^6.0.3",
"coveralls": "^3.0.2",
"cross-env": "^7.0.3",
"css-loader": "^3.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.15.7",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.1",
"https-browserify": "^1.0.0",
"jest": "^22.4.4",
"jest-enzyme": "^6.1.2",
"jest-puppeteer": "^3.5.2",
"process": "^0.11.10",
"puppeteer": "^1.10.0",
"raw-loader": "^4.0.2",
"react-test-renderer": "^16.8.0",
"source-map-loader": "^0.2.4",
"stream-browserify": "^3.0.0",
"stryker": "^0.29.5",
"stryker-api": "^0.21.5",
"stryker-html-reporter": "^0.16.9",
"stryker-jest-runner": "^1.2.9",
"stryker-typescript": "^0.14.2",
"style-loader": "^1.0.0",
"ts-loader": "^9.4.2",
"tslint": "^5.11.0",
"typescript": "^4.9.4",
"wait-until-promise": "^1.0.0",
"webpack": "^5.73.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}