forked from AztecProtocol/zk-money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.75 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
{
"name": "zk.money",
"version": "0.1.0",
"private": true,
"installConfig": {
"pnp": true
},
"type": "module",
"dependencies": {
"@aztec/sdk": "2.1.93",
"@rainbow-me/rainbowkit": "^0.8.1",
"@types/jsan": "^3.1.2",
"broadcast-channel": "^4.2.0",
"debug": "^4.3.1",
"dexie": "^3.2.2",
"ethers": "^5.7.0",
"isomorphic-fetch": "^3.0.0",
"js-cookie": "^2.2.1",
"jsan": "^3.1.14",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"polished": "^4.1.0",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"react-transition-group": "^4.4.2",
"serve": "^14.0.1",
"styled-components": "^5.2.0",
"wagmi": "^0.11.0"
},
"scripts": {
"build": "yarn clean && BUILD_PATH='./dest' vite build",
"start": "serve -p 8080 ./dest",
"start:dev": "PORT=8080 vite",
"clean": "rm -rf ./dest",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"formatting": "prettier --check ./src && eslint --max-warnings 0 ./src",
"format": "prettier -w .",
"build:lambda": "cd lambda && yarn build",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true
}
]
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testEnvironment": "jsdom",
"testRegex": ".*\\.test\\.ts$",
"rootDir": "./src"
},
"eslintConfig": {
"extends": [
"react-app"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": [
"last 1 chrome version"
],
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@jest/globals": "^29.3.1",
"@rollup/plugin-inject": "^5.0.3",
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-links": "^6.4.14",
"@storybook/node-logger": "^6.4.14",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.4.14",
"@types/debug": "^4.1.5",
"@types/jest": "^29.2.3",
"@types/js-cookie": "^2.2.6",
"@types/lodash": "^4.14.168",
"@types/node": "^18.7.23",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-transition-group": "^4.4.4",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-react": "^3.0.1",
"assert": "^2.0.0",
"babel-eslint": "^10.1.0",
"buffer": "^6.0.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "6",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lit-html": "^2.6.1",
"node-stdlib-browser": "^1.2.0",
"prettier": "^2.2.1",
"react-error-overlay": "6.0.9",
"sass": "^1.49.0",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4",
"util": "^0.12.4",
"vite": "^4.0.4",
"vite-plugin-static-copy": "^0.13.0",
"vite-plugin-svgr": "^2.4.0",
"vite-preset-react": "^2.3.0",
"vite-tsconfig-paths": "^4.0.5"
},
"packageManager": "yarn@3.4.0"
}