-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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": "groupifier",
"version": "2.1.0",
"description": "Task and group management tool for WCA competition organizers.",
"keywords": [
"speedcubing",
"WCA",
"competition",
"scorecards"
],
"homepage": "https://groupifier.jonatanklosko.com",
"author": "Jonatan Kłosko",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jonatanklosko/groupifier.git"
},
"scripts": {
"start": "react-scripts start",
"build": "bin/bundle_fonts.sh && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"postinstall": "bin/bundle_fonts.sh"
},
"dependencies": {
"@cubing/icons": "^1.0.6",
"@material-ui/core": "^4.9.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.9.0",
"classnames": "^2.2.6",
"pdfmake": "^0.1.54",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.3",
"react-beautiful-dnd": "^12.2.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.1",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"react-test-renderer": "^16.9.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,md}": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
}
}