forked from thewca/scrambles-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.34 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
{
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"classnames": "^2.2.6",
"core-js": "^3.6.3",
"gh-pages": "^2.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-beautiful-dnd": "^11.0.5",
"react-dom": "^16.12.0",
"react-scripts": "^3.3.0",
"smoothscroll-polyfill": "^0.4.4",
"typeface-roboto": "0.0.75",
"typescript": "^3.7.4",
"xlsx": "^0.14.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}