This repository has been archived by the owner on Oct 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.67 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
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
{
"name": "cappuccino-app",
"version": "3.3.3",
"private": true,
"license": "MIT",
"scripts": {
"start": "REACT_APP_BUILD_NUMBER=local-dev react-scripts start",
"start:raw": "react-scripts start",
"build": "REACT_APP_BUILD_NUMBER=$(date +%y%m%d.%H%M%S) react-scripts build",
"build:raw": "react-scripts build",
"eject": "react-scripts eject",
"lint": "yarn prettier && yarn eslint",
"lint:check": "yarn prettier:check && yarn eslint:check",
"prettier": "prettier src --write",
"prettier:check": "prettier src --check",
"eslint": "eslint src --fix",
"eslint:check": "eslint src",
"prepare": "husky install"
},
"dependencies": {
"@afes-website/docs": "^3.3.0",
"@aspida/axios": "^1.6.3",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@steelydylan/markdown-it-imsize": "^1.0.2",
"axios": "^0.21.4",
"chroma-js": "^2.1.2",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.3.1",
"markdown-it-br": "^1.0.0",
"markdown-it-cjk-breaks": "^1.1.3",
"markdown-it-container": "^3.0.0",
"markdown-it-inline-comments": "^1.0.1",
"markdown-it-task-lists": "^2.1.1",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-qr-reader": "^2.2.1",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"recharts": "^2.1.4",
"sass": "^1.42.1",
"typesafe-react-router": "^2.3.0",
"typescanner": "^0.3.4",
"ua-parser-js": "^0.7.28",
"zenn-content-css": "^0.1.98"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.1.0",
"@types/chroma-js": "^2.1.3",
"@types/gtag.js": "^0.0.7",
"@types/markdown-it": "^12.2.1",
"@types/node": "^16.9.6",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-qr-reader": "^2.1.4",
"@types/react-router-dom": "^5.3.0",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}