-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.54 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "memlog",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">= 18.0.0",
"npm": ">= 8.6.0"
},
"scripts": {
"build": "NODE_ENV=production REACT_APP_VERSION=$(git rev-parse HEAD) REACT_APP_BUILD_TIMESTAMP=$(date '+%s') PUBLIC_URL=/memlog npx react-scripts build",
"dev": "REACT_APP_VERSION=$(git rev-parse HEAD) REACT_APP_BUILD_TIMESTAMP=$(date '+%s') npx react-scripts start",
"format": "prettier --ignore-path .gitignore --write . && eslint --fix --ext ts,tsx ./src",
"lint": "npm run format && git diff --exit-code --quiet",
"start": "REACT_APP_VERSION=$(git rev-parse HEAD) REACT_APP_BUILD_TIMESTAMP=$(date '+%s') npx react-scripts start",
"test": "REACT_APP_VERSION=$(git rev-parse HEAD) REACT_APP_BUILD_TIMESTAMP=$(date '+%s') npx react-scripts test",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.6",
"@chakra-ui/react": "^2.2.6",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@koumatsumoto/github-storage": "^0.7.0",
"@uiball/loaders": "^1.2.6",
"date-fns": "^2.29.1",
"formik": "^2.2.9",
"framer-motion": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"recoil": "^0.7.4",
"remeda": "^1.0.1",
"ts-pattern": "^4.0.5",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.5.4",
"workbox-broadcast-update": "^6.5.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-google-analytics": "^6.5.4",
"workbox-navigation-preload": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-range-requests": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-streams": "^6.5.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@sucrase/jest-plugin": "^2.2.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-scripts": "5.0.1",
"typescript": "^4.7.4"
},
"overrides": {
"nth-check": "2.0.1"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
},
"prettier": {
"printWidth": 140,
"trailingComma": "all"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:import/typescript",
"prettier"
],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"import/order": [
"error",
{
"alphabetize": {
"order": "asc"
},
"groups": [
"builtin",
"external",
"parent",
"sibling",
"index"
]
}
]
}
},
"jest": {
"testMatch": [
"**/*.test.ts"
],
"transform": {
"\\.(js|jsx|ts|tsx)$": "@sucrase/jest-plugin"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css,scss,json,yml,yaml,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache"
]
}
}