-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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": "sybil-resistant-faucet",
"version": "1.0.0",
"author": "Karolis Ramanauskas <[email protected]> (https://www.karolisram.com/)",
"private": true,
"scripts": {
"dev": "next dev --hostname 127.0.0.1",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit --project tsconfig.json",
"format": "prettier -w .",
"format:check": "prettier -c .",
"test:frontend": "jest --coverage --silent --config jest.frontend.config.js",
"test:backend": "jest --coverage --silent --forceExit --config jest.backend.config.js",
"test:e2e": "playwright test",
"prepare": "husky install"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@polkadot/api": "^9.1.1",
"axios": "^0.27.2",
"bigfloat.js": "^3.0.1",
"dotenv": "^16.0.2",
"ioredis": "^5.2.2",
"ioredis-mock": "^8.2.2",
"next": "^12.3.1",
"next-auth": "^4.12.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.3.0",
"redis": "^4.3.1",
"redis-mock": "^0.56.3"
},
"devDependencies": {
"@panva/hkdf": "^1.0.2",
"@playwright/test": "^1.25.1",
"@tailwindcss/forms": "^0.5.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/node": "18.6.5",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"autoprefixer": "^10.4.8",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jose": "^4.10.0",
"lint-staged": "^13.0.3",
"node-mocks-http": "^1.11.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4"
},
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=14.0.0 <17.0.0"
}
}