-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.23 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
{
"name": "@tezwell/visual-tez",
"version": "1.3.0",
"description": "A visual programming tool for writing smart contracts in the Tezos blockchain",
"private": true,
"author": {
"name": "Rodrigo Quelhas",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@craco/craco": "6.4.5",
"@headlessui/react": "1.7.3",
"@heroicons/react": "2.0.12",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.7",
"@taquito/beacon-wallet": "14.0.0",
"@taquito/local-forging": "14.0.0",
"@taquito/taquito": "14.0.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@tezwell/michelson-sdk": "0.4.4",
"@tezwell/smartts-sdk": "0.9.2",
"@tezwell/tezmonitor": "0.0.4",
"@tezwell/tezos-testing-sdk": "0.0.18",
"@types/crypto-js": "4.1.1",
"@types/jest": "29.2.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/react-syntax-highlighter": "15.5.5",
"autoprefixer": "10.4.12",
"axios": "1.1.3",
"blockly": "8.0.2",
"buffer": "6.0.3",
"craco-esbuild": "0.5.2",
"crypto-browserify": "3.12.0",
"crypto-js": "4.1.1",
"esbuild": "0.15.12",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "4.6.0",
"fork-ts-checker-webpack-plugin": "7.2.13",
"jdenticon": "3.2.0",
"jest-canvas-mock": "2.4.0",
"postcss": "8.4.18",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-helmet-async": "1.3.0",
"react-markdown": "8.0.3",
"react-router-dom": "6.4.2",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "15.5.0",
"rehype-raw": "6.1.1",
"remark-gfm": "3.0.1",
"remark-html": "15.0.1",
"stream-browserify": "3.0.0",
"tailwind-scrollbar": "1.3.1",
"tailwindcss": "3.2.1",
"tsconfig-paths-webpack-plugin": "4.0.0",
"typescript": "4.8.4",
"web-vitals": "3.0.4"
},
"scripts": {
"start": "craco --max_old_space_size=4096 start",
"build": "craco --max_old_space_size=4096 build",
"test": "craco --max_old_space_size=4096 test --detectOpenHandles",
"eject": "react-scripts eject",
"prettier:fix": "prettier --write 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"deploy": "bash scripts/deploy.sh"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"transformIgnorePatterns": ["node_modules/(?!axios)"],
"moduleNameMapper": {
"react-markdown": "<rootDir>/node_modules/react-markdown/react-markdown.min.js",
"@tezwell/michelson-sdk/converter": "@tezwell/michelson-sdk/converter/index.cjs",
"@tezwell/michelson-sdk/literal": "@tezwell/michelson-sdk/literal.cjs",
"@tezwell/michelson-sdk/type": "@tezwell/michelson-sdk/type.cjs"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}