-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.83 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
{
"name": "nextjs",
"scripts": {
"build": "scripts/run-task build",
"clobber": "scripts/run-task clobber",
"compile": "scripts/run-task compile",
"dev": "scripts/run-task dev",
"export": "scripts/run-task export",
"format": "scripts/run-task format",
"generate-graphql-schema": "scripts/run-task generate-graphql-schema",
"gql-to-ts": "scripts/run-task gql-to-ts",
"lint": "scripts/run-task lint",
"package": "scripts/run-task package",
"post-compile": "scripts/run-task post-compile",
"pre-compile": "scripts/run-task pre-compile",
"start": "scripts/run-task start",
"telemetry": "scripts/run-task telemetry",
"test": "scripts/run-task test",
"test:watch": "scripts/run-task test:watch",
"typecheck": "scripts/run-task typecheck",
"watch": "scripts/run-task watch",
"lighthouse": "lhci autorun",
"codemod:add-src-to-imports": "jscodeshift -t ./node_modules/@ottofeller/templates/lib/nextjs/add-src-reference-codemode.js --extensions=js,jsx,ts,tsx src pages"
},
"devDependencies": {
"@ottofeller/eslint-plugin-ottofeller": "0.1.3",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/line-clamp": "^0.4.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^12",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"@typescript-eslint/typescript-estree": "5.58.0",
"autoprefixer": "^10.4.14",
"eslint": "8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-tailwindcss": "3.11.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jiti": "^1.18.2",
"jscodeshift": "^0.15.0",
"postcss": "^8.4.23",
"postcss-nesting": "*",
"prettier": "2.8.7",
"prettier-plugin-organize-imports": "3.2.2",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"yaml": "^2.2.2"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"@graphql-codegen/add": "^4.0.1",
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/import-types-preset": "^2.2.6",
"@graphql-codegen/introspection": "^3.0.1",
"@graphql-codegen/named-operations-object": "^2.3.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-graphql-request": "^4.5.9",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@headlessui/react": "*",
"@lhci/cli": "^0.12.0",
"graphql": "^16.6.0",
"next": "^13.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"engines": {
"node": ">= 12.22.0"
},
"license": "Apache-2.0",
"version": "0.0.0"
}