This repository has been archived by the owner on Aug 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.04 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "credix-app",
"private": true,
"resolutions": {
"webpack": "^5",
"@types/react": "17.0.41",
"@antv/g2": "4.1.50"
},
"scripts": {
"predev": "npm run i18n:compile",
"dev": "next dev",
"prebuild": "npm run i18n:compile",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "yarn prettier --check src/",
"export": "next export",
"test:unit": "jest --passWithNoTests",
"storybook": "NEXT_PUBLIC_REACT_APP_CLUSTER=localnet start-storybook -p 6006",
"build-storybook": "NEXT_PUBLIC_REACT_APP_CLUSTER=localnet build-storybook",
"i18n:extract": "formatjs extract 'src/pages/**/*.ts*' 'src/components/**/*.ts*' --out-file src/lang/en.json && yarn prettier --write src/lang",
"i18n:compile": "formatjs compile-folder src/lang src/compiled-lang && yarn prettier --write src/compiled-lang",
"cypress:open": "cypress open"
},
"dependencies": {
"@ant-design/charts": "^1.3.6",
"@civic/solana-gateway-react": "0.9.0",
"@credix/credix-client": "0.13.5-beta.0",
"@credix/prettier-config": "^1.0.0",
"@sentry/nextjs": "^6.19.6",
"@solana/wallet-adapter-base": "^0.9.5",
"@solana/wallet-adapter-react": "0.15.5",
"@solana/wallet-adapter-react-ui": "^0.9.7",
"@solana/wallet-adapter-wallets": "^0.16.1",
"@solana/web3.js": "^1.41.9",
"@tailwindcss/forms": "^0.5.1",
"@typeform/embed-react": "^1.16.0",
"antd": "^4.20.4",
"autoprefixer": "^10.4.7",
"big.js": "^6.1.1",
"bs58": "^5.0.0",
"csv": "^6.2.0",
"dayjs": "^1.11.4",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lodash": "^4.17.21",
"next": "^12.1.6",
"next-with-less": "^2.0.5",
"postcss": "^8.4.13",
"react": "^18.1.0",
"react-dom": "18.1.0",
"react-intl": "^5.25.1",
"tailwindcss": "^3.0.24",
"tweetnacl": "^1.0.3",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@credix/eslint-config": "^2.0.0",
"@credix/prettier-config": "^1.0.0",
"@formatjs/cli": "^4.8.4",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/big.js": "^6.1.3",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"babel-loader": "^8.2.5",
"babel-plugin-formatjs": "^10.3.20",
"chromatic": "^6.5.4",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-formatjs": "^3.1.1",
"eslint-plugin-storybook": "^0.5.11",
"husky": "^8.0.1",
"jest": "^27.5.1",
"phan-wallet-mock": "^0.1.0",
"prettier": "^2.6.2",
"react-test-renderer": "^18.1.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
},
"packageManager": "[email protected]",
"prettier": "@credix/prettier-config"
}