-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.09 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
{
"name": "ikeikechaya.com",
"version": "0.1.0",
"private": true,
"description": "Official website for ikeikechaya.com",
"keywords": [
"website",
"fishery",
"restaurant"
],
"homepage": "http://ikeikechaya.com",
"bugs": "https://github.com/danmaq/ikeikechaya.com/issues",
"repository": "github:danmaq/ikeikechaya.com",
"license": "Apache-2.0",
"author": "danmaq",
"scripts": {
"build": "NODE_ENV=production react-static build",
"lint": "concurrently -m 1 \"npm:lint:*:check\"",
"lint:eslint:check": "eslint --cache --format codeframe \"$@\" \"./**/*\"",
"lint:eslint:fix": "npm run lint:eslint:check --fix",
"lint:fix": "concurrently -m 1 \"npm:lint:*:fix\"",
"lint:prettier:check": "prettier --check \"./**/*\"",
"lint:prettier:fix": "prettier --write \"./**/*\"",
"prepare": "path-exists .git && husky install || exit 0",
"serve": "serve dist -p 3000 -s",
"stage": "react-static build --staging",
"start": "react-static start"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@material-ui/core": "^4.12.4",
"@reach/router": "^1.3.4",
"@sentry/browser": "^5.30.0",
"classnames": "^2.3.1",
"lodash.partition": "^4.6.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"react-static": "^7.6.2",
"react-static-plugin-reach-router": "^7.6.2",
"react-static-plugin-sitemap": "^7.6.2",
"react-static-plugin-source-filesystem": "^7.6.2",
"react-static-plugin-typescript": "^7.6.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/classnames": "^2.3.1",
"@types/lodash.partition": "^4.6.6",
"@types/reach__router": "^1.3.10",
"@types/react": "^16.14.25",
"@types/react-dom": "^16.9.14",
"@types/react-helmet": "^5.0.20",
"@types/react-hot-loader": "^4.1.1",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "^4.41.32",
"@types/webpack-dev-server": "^3.11.6",
"@types/webpack-env": "^1.16.4",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"concurrently": "^7.1.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-editorconfig": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^7.0.4",
"path-exists-cli": "^2.0.0",
"prettier": "^2.6.2",
"prettier-plugin-packagejson": "^2.2.17",
"prettier-plugin-sh": "^0.10.1",
"prettier-plugin-sort-json": "0.0.2",
"pretty-quick": "^3.1.3",
"typescript": "^3.9.10",
"typescript-eslint-language-service": "^5.0.0"
},
"engines": {
"node": ">=14.19.1",
"npm": ">=6.14.6"
}
}