-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.08 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
{
"name": "examples",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretty": "prettier --write pages",
"test:jest": "jest --config jestconfig.json",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.8",
"@chakra-ui/system": "^1.12.1",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/language": "^0.20.0",
"@codemirror/legacy-modes": "^0.20.0",
"@coinbarn/ergo-ts": "^0.3.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@ertravi/txio-view-react": "^0.0.32",
"@multiformats/blake2": "^1.0.9",
"@types/superagent": "^4.1.15",
"@uiw/react-codemirror": "^4.7.0",
"ergo-lib-wasm-browser": "^0.18.0",
"ergoscript": "^0.1.1",
"eslint-plugin-jest": "^26.1.5",
"framer-motion": "^6.3.1",
"jest": "^28.0.3",
"json-bigint": "^1.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"moment-duration-format": "^2.3.2",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"superagent": "^7.1.3",
"wasm-loader": "^1.3.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/jest": "^27.5.0",
"@types/json-bigint": "^1.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.25",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"chai": "^4.3.6",
"ergo-lib-wasm-nodejs": "^0.16.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.0",
"prettier-eslint-cli": "^6.0.1",
"ts-jest": "^28.0.1",
"ts-node": "^10.8.0",
"typescript": "^4.6.3"
}
}