-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.37 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "elio-dao",
"homepage": "https://github.com/deep-ink-ventures/elio-dao-frontend",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"check-types": "tsc --noEmit --pretty",
"test": "jest",
"pre-commit": "yarn format && yarn check-types && yarn test",
"commit": "cz",
"prepare": "husky install"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@soroban-react/contracts": "^5.0.3",
"@soroban-react/core": "^5.0.3",
"@soroban-react/types": "^5.0.3",
"@stellar/freighter-api": "^1.7.0",
"antd": "^5.2.2",
"bignumber.js": "^9.1.1",
"classnames": "^2.3.2",
"daisyui": "2.46.1",
"immer": "^10.0.2",
"next": "^13.1.1",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.1",
"react-html-parser": "^2.0.2",
"react-quill": "^2.0.0",
"soroban-client": "1.0.0-beta.2",
"stellar-sdk": "^10.4.1",
"uuid": "^9.0.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/cz-commitlint": "^17.3.0",
"@next/bundle-analyzer": "^13.1.1",
"@percy/cli": "^1.16.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-html-parser": "^2.0.2",
"@types/retry": "^0.12.2",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"autoprefixer": "^10.4.13",
"commitizen": "^4.2.6",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.8.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"next-router-mock": "^0.9.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.7",
"rimraf": "^3.0.2",
"start-server-and-test": "^1.15.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"whatwg-fetch": "^3.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
}
}