-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.85 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
{
"name": "aztec-block-explorer",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "yarn clean && yarn vite build",
"start:dev": "yarn vite",
"formatting": "yarn prettier --check ./src && yarn eslint --max-warnings 0 ./src",
"clean": "rm -rf ./cache ./dest"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"last 1 chrome version"
],
"devDependencies": {
"@aztec/eslint-config": "file:eslint-config",
"@aztec/sdk": "^2.1.83",
"@rushstack/eslint-patch": "^1.2.0",
"@types/bn.js": "^4.11.6",
"@types/classnames": "^2.2.10",
"@types/jest": "^24.0.0",
"@types/js-cookie": "^2.2.6",
"@types/node": "^18.11.19",
"@types/react": "18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-react": "^3.0.1",
"babel-plugin-styled-components": "^2.0.7",
"buffer": "^6.0.3",
"class-validator": "^0.13.2",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.5.0",
"events": "^3.3.0",
"file-loader": "^6.2.0",
"js-cookie": "^2.2.1",
"moment": "^2.27.0",
"polished": "^3.6.6",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-router-dom": "^5.2.0",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"styled-components": "^5.2.0",
"styled-reset": "^4.2.3",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"use-http": "^1.0.27",
"vite": "^4.0.4",
"vite-plugin-svgr": "^2.4.0",
"vite-preset-react": "^2.3.0",
"vite-tsconfig-paths": "^4.0.5"
}
}