-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.86 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "yarn remix:build",
"dev": "cross-env NODE_ENV=development yarn remix:dev",
"start": "yarn node --require newrelic ./node_modules/.bin/remix-serve build",
"fmt": "yarn fix:prettier",
"fix:prettier": "yarn commands:prettier --write",
"fix:eslint": "yarn commands:eslint --fix",
"check:prettier": "yarn commands:prettier --check",
"check:eslint": "yarn commands:eslint",
"check:vitest": "yarn vitest run",
"lint": "yarn check:eslint",
"test": "yarn check:vitest",
"commands:prettier": "prettier **/*.{js,ts,tsx,json,md}",
"commands:eslint": "eslint *.js *.ts app",
"remix:build": "NODE_OPTIONS='-r ./esbuild-overrides' remix build",
"remix:dev": "NODE_OPTIONS='-r ./esbuild-overrides' remix dev",
"postinstall": "patch-package"
},
"dependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/plugin-syntax-typescript": "^7.18.6",
"@emotion/babel-plugin": "^11.10.0",
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@napi-rs/canvas": "0.1.30",
"@radix-ui/react-dialog": "^0.1.7",
"@radix-ui/react-dropdown-menu": "^0.1.6",
"@radix-ui/react-popover": "^1.0.0",
"@radix-ui/react-progress": "^1.0.0",
"@radix-ui/react-toast": "^0.1.1",
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"@starknet-react/core": "^0.13.2",
"@testing-library/jest-dom": "^5.16.4",
"@types/bn.js": "^5.1.1",
"@types/node": "^18.8.3",
"@types/pg": "^8.6.5",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-virtualized": "^9.21.21",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@vitejs/plugin-react": "^2.1.0",
"babel-loader": "^8.2.5",
"copy-to-clipboard": "^3.3.1",
"cross-env": "^7.0.3",
"eslint": "8.25.0",
"eslint-config-prettier": "^8.5.0",
"framer-motion": "^6.5.1",
"get-starknet": "^1.5.0",
"git": "^0.1.5",
"gsap": "^3.11.3",
"happy-dom": "^6.0.4",
"immer": "^9.0.15",
"isbot": "^3.6.0",
"lottie-react": "^2.3.1",
"newrelic": "^9.2.0",
"patch-package": "^6.4.7",
"pg": "^8.7.3",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.3.1",
"react-use": "^17.4.0",
"react-virtualized": "^9.22.3",
"starknet": "npm:starknet@^3.18.2",
"starknet3": "npm:starknet@^3.18.2",
"starknet4": "npm:starknet@^4.4.1",
"tiny-invariant": "^1.3.1",
"typescript": "^4.8.4",
"vite": "^3.1.7",
"vite-tsconfig-paths": "^3.5.1",
"vitest": "^0.24.0"
}
}