-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 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
{
"name": "scrambles-matcher",
"version": "1.0.0",
"description": "Tool to make matching scrambles to results easier.",
"keywords": [
"speedcubing",
"WCA",
"competition",
"results",
"scrambles"
],
"homepage": ".",
"author": "Philippe Virouleau",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/thewca/scrambles-matcher"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --single-quote --write",
"*.{js,css,md}": "prettier --write"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.0",
"@mui/system": "^5.15.9",
"classnames": "^2.5.1",
"core-js": "^3.36.0",
"gh-pages": "^6.1.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"smoothscroll-polyfill": "^0.4.4",
"typeface-roboto": "1.1.13",
"typescript": "^5.3.3",
"xlsx": "^0.18.5"
},
"overrides": {
"react-scripts": {
"typescript": ">3.2.1"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
}
}