-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.41 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
{
"name": "my-music-webapp",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/fragment-matcher": "^3.2.1",
"@graphql-codegen/typescript": "^2.5.1",
"@graphql-codegen/typescript-operations": "^2.4.2",
"@graphql-codegen/typescript-react-apollo": "^3.2.16",
"@milahu/patch-package": "^6.4.14",
"@types/node": "17.0.42",
"@types/react": "^18.0.12",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"confusing-browser-globals": "1.0.11",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-no-type-assertion": "^1.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"eslint-plugin-sort-destructure-keys": "1.4.0",
"nextjs-bundle-analysis": "^0.4.0",
"prettier": "2.6.2",
"typescript": "4.7.3"
},
"dependencies": {
"@apollo/client": "3.6.7",
"@floating-ui/dom": "^0.5.2",
"@floating-ui/react-dom-interactions": "^0.6.3",
"@next/bundle-analyzer": "12.1.6",
"@vanilla-extract/css": "^1.7.2",
"@vanilla-extract/next-plugin": "^2.0.2",
"@vanilla-extract/recipes": "^0.2.5",
"date-fns": "2.28.0",
"date-fns-tz": "1.3.4",
"framer-motion": "6.3.11",
"graphql": "16.5.0",
"graphql-tag": "2.12.6",
"next": "12.1.6",
"normalize.css": "8.0.1",
"polished": "4.2.2",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"scripts": {
"dev": "next",
"start": "next start",
"build": "next build",
"lint": "eslint src --ext js,ts,tsx",
"lint:fix": "eslint src --ext js,ts,tsx --fix",
"types:check:watch": "tsc --noEmit --watch",
"types:generate:graphql": "graphql-codegen --config codegen.yml",
"postinstall": "patch-package"
},
"engines": {
"node": "16.x"
},
"browserslist": {
"production": [
">0.3%",
"not dead",
"not ie 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}