forked from kenkoooo/AtCoderProblems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.11 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.11 KB
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
{
"name": "atcoder-problems",
"version": "0.1.0",
"private": true,
"homepage": "https://kenkoooo.com/atcoder",
"scripts": {
"build": "react-scripts build && yarn run md:build",
"cy:open": "cypress open",
"cy:run": "cypress run",
"eject": "react-scripts eject",
"format": "yarn run sort-package-json && yarn run prettier && yarn run lint:fix",
"lint": "eslint --ignore-path .gitignore \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "yarn run lint --fix",
"md:serve": "mdbook serve ../guide/",
"md:clean": "mdbook clean ../guide/ -d=../atcoder-problems-frontend/build/book/",
"md:build": "mkdir -p build/book && yarn run md:clean && mdbook build ../guide/ -d=../atcoder-problems-frontend/build/book/",
"prepare-ci": "rm -rf serve && mkdir serve && cp -r build serve/atcoder",
"prettier": "prettier --write --ignore-path .gitignore \"**/*.{css,scss,html,js,json,jsx,md,ts,tsx}\"",
"sort-package-json": "sort-package-json",
"start": "react-scripts start",
"start:ci": "serve --no-clipboard -l 3000",
"test": "react-scripts test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,scss,html,json,md}": "prettier --write",
"../**/*.md": "prettier --write",
"./(cypress|src)/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings=0"
],
".eslintrc.js": "prettier --write",
"package.json": [
"prettier --write",
"sort-package-json"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@types/react-beautiful-dnd": "13.0.0",
"bootstrap": "4.3.1",
"immutable": "4.0.0-rc.12",
"moment": "2.29.4",
"random": "3.0.6",
"react": "17.0.1",
"react-beautiful-dnd": "13.1.0",
"react-bootstrap-table": "4.3.1",
"react-dom": "16.8.3",
"react-helmet": "6.1.0",
"react-icons": "4.2.0",
"react-measure": "2.5.2",
"react-refetch": "4.0.0-0",
"react-router-dom": "5.1.2",
"react-scripts": "4.0.1",
"reactstrap": "9.1.4",
"recharts": "2.0.0-beta.1",
"sass": "1.37.0",
"swr": "1.3.0"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "17.0.39",
"@types/random": "2.1.1",
"@types/react": "17.0.0",
"@types/react-bootstrap-table": "4.3.11",
"@types/react-dom": "16.9.4",
"@types/react-helmet": "6.0.0",
"@types/react-measure": "2.0.8",
"@types/react-router-dom": "5.1.3",
"@types/reactstrap": "8.2.0",
"@types/recharts": "1.1.14",
"@types/seedrandom": "2.4.28",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"cypress": "4.6.0",
"eslint": "7.32.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.0.2",
"http-proxy-middleware": "1.0.5",
"husky": "4.2.5",
"lint-staged": "10.2.2",
"prettier": "2.0.5",
"serve": "11.3.1",
"sort-package-json": "1.42.2",
"typescript": "3.7.3"
}
}