forked from starknet-io/starkgate-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.73 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
{
"name": "starkgate-frontend",
"version": "1.9.0",
"homepage": "./",
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "yarn run clean",
"build": "react-scripts build",
"build:mainnet": "env-cmd -f .env.mainnet yarn run build",
"build:goerli": "env-cmd -f .env.goerli yarn run build",
"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 **/*.{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"
},
"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",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.5.0",
"@splitbee/web": "^0.3.0",
"@starkware-industries/commons-js-enums": "1.1.0-dev.3",
"@starkware-industries/commons-js-libs": "1.2.0-dev.4",
"@starkware-industries/commons-js-utils": "1.0.0-dev.5",
"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",
"use-breakpoint": "^3.0.1",
"use-deep-compare-effect": "^1.8.1",
"use-wallet": "^0.13.6"
},
"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",
"@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",
"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",
"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"
}
}