-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix dev --manual",
"tailwind": "tailwindcss build app/tailwind.css -o public/tailwind.css",
"typecheck": "tsc",
"test": "vitest",
"start": "remix build; dotenv -e .env remix-serve ./build/index.js"
},
"dependencies": {
"@headlessui-float/react": "^0.13.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@polkadot/api": "^10.11.2",
"@polkadot/api-contract": "^10.11.2",
"@polkadot/extension-dapp": "^0.46.6",
"@polkadot/react-identicon": "^3.6.4",
"@remix-run/css-bundle": "^2.3.1",
"@remix-run/node": "^2.3.1",
"@remix-run/react": "^2.3.1",
"@remix-run/serve": "^2.3.1",
"isbot": "^3.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.3"
},
"devDependencies": {
"@remix-run/dev": "^2.3.1",
"@remix-run/eslint-config": "^2.3.1",
"@remix-run/testing": "^2.4.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.38.0",
"happy-dom": "^12.10.3",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}