-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.93 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "scripthungry",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "postcss styles --base styles --dir app/styles --env production",
"build:remix": "remix build",
"codegen": "graphql-codegen --config codegen.yml",
"dev": "run-p dev:*",
"dev:codegen": "graphql-codegen --config codegen.yml -w",
"dev:css": "postcss styles --base styles --dir app/styles -w",
"dev:remix": "remix watch",
"dev:netlify": "cross-env NODE_ENV=development netlify dev",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production netlify dev",
"typecheck": "tsc -b"
},
"dependencies": {
"@cloudinary/url-gen": "1.8.6",
"@graphcms/rich-text-react-renderer": "^0.5.0",
"@graphcms/rich-text-types": "^0.4.0",
"@graphcms/utils": "github:jpedroschmitz/graphcms-utils#add-types",
"@netlify/functions": "latest",
"@remix-run/netlify-edge": "experimental-netlify-edge",
"@remix-run/react": "experimental-netlify-edge",
"@remix-run/server-runtime": "experimental-netlify-edge",
"@upstash/redis": "^1.6.0",
"cross-env": "^7.0.3",
"framer-motion": "^6.3.5",
"graphql-request": "^4.3.0",
"graphql-tag": "^2.12.6",
"isbot": "3.5.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-icons": "^4.4.0",
"react-parallax-tilt": "^1.7.63",
"remix-utils": "^3.3.0",
"tiny-invariant": "^1.2.0",
"victory": "^36.5.0"
},
"devDependencies": {
"@babel/core": ">=7.13.0 <8.0.0",
"@babel/preset-env": "^7.1.6",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/fragment-matcher": "3.2.1",
"@graphql-codegen/typescript": "2.4.11",
"@graphql-codegen/typescript-document-nodes": "2.2.11",
"@graphql-codegen/typescript-graphql-request": "^4.4.8",
"@graphql-codegen/typescript-operations": "2.4.0",
"@remix-run/dev": "experimental-netlify-edge",
"@remix-run/eslint-config": "experimental-netlify-edge",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.2",
"@tailwindcss/typography": "0.5.7",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"autoprefixer": "10.4.11",
"cssnano": "5.1.13",
"daisyui": "^2.15.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"graphql": "^15.8.0",
"miniflare": "^2.5.0",
"netlify-cli": "^10.18.0",
"npm-run-all": "^4.1.5",
"postcss": "8.4.16",
"postcss-cli": "^9.1.0",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
"prop-types": "^15.6.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.7.2"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxSingleQuote": true,
"semi": false,
"singleQuote": true,
"printWidth": 80,
"proseWrap": "always",
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"eslintConfig": {
"extends": [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"@remix-run/eslint-config/jest-testing-library",
"prettier"
],
"plugins": [
"unused-imports",
"simple-import-sort",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2022
},
"rules": {
"simple-import-sort/imports": "error",
"unused-imports/no-unused-imports": "error",
"prettier/prettier": "error"
},
"settings": {
"jest": {
"version": 27
}
}
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/app/generated",
"/api/index.js"
],
"engines": {
"node": ">=14"
},
"pnpm": {
"overrides": {
"glob-parent@<5.1.2": ">=5.1.2",
"async@<2.6.4": ">=2.6.4"
}
}
}