forked from starknet-io/starkgate-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.14 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "starkgate-frontend",
"version": "1.5.0-dev.1",
"homepage": "./",
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "yarn run clean",
"build:production": "react-scripts build",
"build:testing": "env-cmd -f .env.testing yarn run build:production",
"start": "ESLINT_NO_DEV_ERRORS=true react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint:scripts": "eslint **/*.{js,jsx}",
"lint:styles": "stylelint **/*.{css,scss}",
"lint:prettier": "prettier --check s**/*.{js,jsx,css,scss}",
"lint": "yarn run -s lint:scripts & yarn run -s lint:styles & yarn run -s lint:prettier",
"format:scripts": "eslint --fix **/*.{js,jsx}",
"format:styles": "stylelint --fix **/*.{css,scss}",
"format:prettier": "prettier --write **/*.{js,jsx,css,scss,yaml,yml,md}",
"format": "yarn run -s format:scripts & yarn run -s format:styles & yarn run -s format:prettier",
"release": "semantic-release",
"release:dry": "semantic-release --no-ci --dry-run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"**/*.{css,scss}": [
"prettier --write",
"stylelint --fix",
"git add"
]
},
"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": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@headlessui/react": "^1.5.0",
"@metamask/onboarding": "^1.0.1",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.5.0",
"@splitbee/web": "^0.3.0",
"get-starknet-wallet": "^0.0.8",
"js-logger": "^1.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-router": "^6.3.0",
"react-router-dom": "6",
"react-scripts": "4.0.3",
"starknet": "^3.7.0",
"use-async-memo": "^1.2.3",
"use-breakpoint": "^3.0.1",
"use-deep-compare-effect": "^1.8.1",
"use-wallet": "^0.13.6",
"uuid": "^8.3.2",
"web3": "^1.7.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-syntax-flow": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/preset-flow": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"conventional-changelog-conventionalcommits": "^4.6.3",
"env-cmd": "^10.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"node-sass": "^6.0.1",
"postcss": "^8.4.4",
"prettier": "^2.5.1",
"prettier-stylelint": "^0.4.2",
"prop-types": "^15.7.2",
"sass-loader": "^12.1.0",
"semantic-release": "^19.0.2",
"stylelint": "^14.1.0",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}