-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "apepay-js-root",
"type": "module",
"private": true,
"workspaces": [
"sdk/js",
"ui/lib",
"ui/app"
],
"scripts": {
"format": "prettier -w ui && prettier -w sdk",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"clean": "rm -rf js-dist",
"build": "bash build-script.sh"
},
"engines": {
"node": "16.15.1"
},
"dependencies": {
"@types/node": "^18.16.12",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@uniswap/token-lists": "^1.0.0-beta.33",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"express": "^4.18.2",
"prettier": "^3.0.1",
"react-router-dom": "^6.18.0",
"typescript": "^5.1.6",
"viem": "1.18",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.2"
},
"devDependencies": {
"json": "^11.0.0"
}
}