This repository has been archived by the owner on Jan 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "yumemi-frontend-coding-test-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --watch",
"type-check:ci": "tsc --noEmit --skipLibCheck",
"format": "prettier **/*.{js,ts,tsx,json,css} --write --ignore-path .gitignore --no-error-on-unmatched-pattern --ignore-unknown",
"test": "jest --watchAll",
"test:ci": "jest --ci",
"prepare": "husky install"
},
"dependencies": {
"highcharts": "^10.1.0",
"highcharts-react-official": "^3.1.0",
"next": "12.1.6",
"node-fetch": "^2.6.7",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.31.3",
"ress": "^5.0.2",
"swr": "^1.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/node": "17.0.35",
"@types/node-fetch": "^2.6.1",
"@types/prettier": "^2.6.1",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2",
"typescript": "4.7.2"
},
"lint-staged": {
"*.--ignore-unknown": "prettier --write",
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}