forked from thewca/scrambles-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
{
"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": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"classnames": "^2.3.1",
"core-js": "^3.21.0",
"gh-pages": "^3.2.3",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.0",
"smoothscroll-polyfill": "^0.4.4",
"typeface-roboto": "1.1.13",
"typescript": "^4.5.5",
"xlsx": "^0.18.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1"
}
}