This repository has been archived by the owner on Oct 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.44 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": "smart-app",
"version": "1.2.0",
"private": true,
"scripts": {
"start": "PORT=3009 craco start",
"start:dev": "PORT=3008 REACT_APP_HOST_TYPE=dev craco start",
"build": "CI=false GENERATE_SOURCEMAP=false craco build --max_old_space_size=2048",
"test": "craco test",
"eject": "react-scripts eject",
"stylelint": "stylelint \"src/**/*.scss\" --config stylelint.config.js",
"i18next:scanner": "i18next-scanner --config i18next-scanner.config.js",
"lint": "eslint ./src -c .eslintrc.js --fix",
"format": "prettier './src/**/*.tsx' --write",
"changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint && npm run stylelint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@craco/craco": "^6.1.1",
"@darwinia/types": "2.7.2",
"@fontsource/ibm-plex-sans": "^4.5.1",
"@metamask/jazzicon": "^2.0.0",
"@polkadot/api": "^7.4.1",
"@polkadot/extension-dapp": "0.41.1",
"@polkadot/react-identicon": "^0.87.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/react-dom": "^17.0.0",
"antd": "4.16.1",
"bignumber": "^1.1.0",
"craco-antd": "^1.19.0",
"date-fns": "^2.28.0",
"graphql-hooks": "^5.5.1",
"i18next": "^20.1.0",
"i18next-browser-languagedetector": "^6.1.0",
"i18next-http-backend": "^1.2.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.1",
"react-router-dom": "^6.2.1",
"react-scripts": "4.0.3",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"web3": "^1.6.1"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-angular": "^12.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@open-wc/webpack-import-meta-loader": "^0.4.7",
"@tailwindcss/postcss7-compat": "^2.0.4",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.25.0",
"antd-theme-webpack-plugin": "^1.3.9",
"autoprefixer": "^9.8.8",
"codelyzer": "^6.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^37.5.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.3",
"i18next-scanner": "^3.1.0",
"i18next-scanner-typescript": "^1.0.6",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-quick": "0.0.5",
"pretty-quick": "^3.1.3",
"sass": "^1.43.5",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-prettier": "^1.2.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.4",
"tailwindcss-aspect-ratio": "^3.0.0"
}
}