-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.93 KB
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
{
"name": "graphiql-app",
"version": "0.1.0",
"private": true,
"lint-staged": {
"*.{tsx,ts}": [
"prettier --write",
"eslint --report-unused-disable-directives --max-warnings 0"
],
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.scss": [
"stylelint --fix"
]
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:fix": "npx prettier . --cache --write src/**/*.*",
"ci:format": "prettier . --check",
"prepare": "husky",
"test": "jest",
"server": "json-server -w server/db.json -p 3031"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"firebase": "^10.13.0",
"js-cookie": "^3.0.5",
"next": "14.2.5",
"next-intl": "^3.17.6",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-json-pretty": "^2.2.0",
"sass": "^1.77.8",
"sharp": "^0.33.5",
"yup": "^1.4.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "29.5.11",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-compiler": "^0.0.0-experimental-0998c1e-20240625",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"json-server": "^1.0.0-beta.2",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
}
}