-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.15 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
{
"name": "identity-wallet",
"version": "0.0.1",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore",
"format": "prettier . --ignore-path .gitignore --write",
"test": "jest",
"storybook": "start-storybook -p 6006 --ci",
"dev": "next dev",
"build": "next build",
"start": "next start",
"ngrok": "ngrok http 3000"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.8.7",
"@decentralized-identity/ion-tools": "^0.1.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@heroicons/react": "^1.0.4",
"axios": "^0.22.0",
"base64url": "^3.0.1",
"browser-passworder": "^2.0.3",
"framer-motion": "^4",
"jose": "^3.20.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"msal": "^1.4.14",
"next": "12",
"next-pwa": "~5.4",
"nookies": "^2.5.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-pin-input": "^1.1.0",
"react-qr-reader": "^2.2.1",
"uuid": "^8.3.2",
"web3": "^1.6.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@emotion/core": "^11.0.0",
"@storybook/addon-actions": "^6.3.9",
"@storybook/addon-essentials": "^6.3.9",
"@storybook/addon-links": "^6.3.9",
"@storybook/react": "^6.3.9",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.10.2",
"@types/react": "^18.0.7",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"ngrok": "^4.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}