-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "front-wealm",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen": "graphql-codegen --config codegen.yml",
"lint:fix": "npm run lint -- --fix",
"pre-commit-lint": "yarn check-types && yarn lint-staged",
"check-types": "tsc-files --pretty --noEmit",
"prepare": "husky install"
},
"dependencies": {
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.2.1",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next": "12.3.1",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.2"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.6",
"@graphql-codegen/client-preset": "1.0.6",
"@graphql-codegen/typescript": "^2.7.4",
"@graphql-codegen/typescript-graphql-request": "^4.5.6",
"@graphql-codegen/typescript-operations": "^2.5.4",
"@graphql-codegen/typescript-react-query": "^4.0.2",
"@types/node": "18.8.4",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"add": "^2.0.6",
"eslint": "^8.0.1",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.10",
"typescript": "*",
"yarn": "^1.22.19"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"**/*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write --ignore-unknown"
}
}