-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.07 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
{
"name": "near-fastauth-wallet",
"version": "2.0.6",
"license": "MIT",
"scripts": {
"build": "npm run tailwind:build && nx build --buildLibsFromSource --skip-nx-cache",
"deploy": "npm run build && cd dist/near-fastauth-wallet && npm publish",
"deploy:beta": "npm run build && cd dist/near-fastauth-wallet && npm publish --tag beta",
"test": "nx test",
"watch": "nodemon",
"tailwind": "npx tailwindcss -i ./src/ui/styles.input.css -o ./src/ui/styles.css --watch",
"tailwind:build": "npx tailwindcss -i ./src/ui/styles.input.css -o ./src/ui/styles.css"
},
"dependencies": {
"@near-js/transactions": "^0.2.1",
"@near-wallet-selector/core": "^8.5.2",
"@near-wallet-selector/wallet-utils": "^8.5.2",
"@radix-ui/react-dialog": "^1.1.2",
"@vitejs/plugin-react": "^4.2.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"js-sha256": "^0.11.0",
"lucide-react": "^0.453.0",
"multichain-tools": "2.0.17",
"near-api-js": "^2.1.4",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.3.0",
"usehooks-ts": "^2.9.2",
"vaul": "^1.1.0"
},
"devDependencies": {
"@nx/eslint-plugin": "16.8.1",
"@nx/js": "16.8.1",
"@nx/linter": "16.8.1",
"@nx/vite": "16.8.1",
"@nx/workspace": "16.8.1",
"@types/bn.js": "^5.1.5",
"@types/elliptic": "^6.4.18",
"@types/node": "^18.7.1",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-c8": "~0.32.0",
"@vitest/ui": "~0.32.0",
"autoprefixer": "^10.4.16",
"eslint": "~8.46.0",
"eslint-config-prettier": "8.1.0",
"nodemon": "^3.0.3",
"nx": "16.8.1",
"postcss": "^8.4.33",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.14",
"typescript": "~5.1.3",
"verdaccio": "^5.0.4",
"vite": "~4.3.9",
"vitest": "~0.32.0"
},
"type": "commonjs",
"main": "./src/index.js",
"typings": "./src/index.d.ts"
}