This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.7 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": "vaccines-kyoto-city-faq",
"version": "0.1.0",
"private": true,
"homepage": "/vaccines-kyoto-city-faq",
"dependencies": {
"@types/node": "^12.20.13",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"gyazo-api": "^0.3.1",
"next": "^10.2.0",
"puppeteer": "^9.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"scripts": {
"dev": "next dev",
"export": "next export",
"build": "next build",
"start": "next start",
"lint": "npm run prettier && npm run eslint",
"lint:ci": "npm run prettier:ci && npm run eslint:ci",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"eslint": "eslint src/** --ext .ts,.tsx",
"eslint:ci": "eslint src/** --ext .ts,.tsx --quiet",
"eslint:fix": "eslint src/** --ext .ts,.tsx --fix",
"prettier": "prettier --config .prettierrc --check '**/*.{ts,tsx}'",
"prettier:ci": "prettier --config .prettierrc --check --loglevel=silent '**/*.{ts,tsx}'",
"prettier:fix": "prettier --config .prettierrc --write '**/*.{ts,tsx}'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.0"
}
}