-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.71 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
{
"name": "katy-site-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"gen": "graphql-codegen --require dotenv/config --config codegen.yml dotenv_config_path=.env.local",
"dev": "npm run gen && next dev",
"dev:inspect": "npm run gen && NODE_OPTIONS='--inspect' next dev",
"build": "npm run gen && next build",
"build:profile": "next build --profile",
"build:analyze": "cross-env ANALYZE=true next build",
"postbuild": "next-sitemap",
"start": "next start",
"upgrade-deps": "ncu -u -i",
"lint": "next lint",
"lint:staged": "lint-staged",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "npm run build && start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "npm run build && start-server-and-test start http://localhost:3000 cypress:headless",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@graphcms/rich-text-react-renderer": "^0.6.1",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-toast": "^0.1.1",
"@radix-ui/react-visually-hidden": "^0.1.4",
"@stitches/react": "^1.2.8",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.28.0",
"framer-motion": "^6.5.1",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"lodash.isequal": "^4.5.0",
"next": "12.2.2",
"next-compose-plugins": "^2.2.1",
"next-seo": "^5.4.0",
"next-sitemap": "^3.1.11",
"next-urql": "^3.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ssr-prepass": "^1.5.0",
"urql": "^2.2.2",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@graphcms/rich-text-types": "^0.5.0",
"@graphql-codegen/add": "^3.2.0",
"@graphql-codegen/cli": "^2.8.1",
"@graphql-codegen/schema-ast": "^2.5.0",
"@graphql-codegen/typescript": "^2.7.1",
"@graphql-codegen/typescript-operations": "^2.5.1",
"@graphql-codegen/typescript-urql": "^3.6.1",
"@next/bundle-analyzer": "^12.2.2",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "18.0.5",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"cross-env": "^7.0.3",
"cypress": "^10.3.0",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-check-updates": "^15.3.4",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"start-server-and-test": "^1.14.0",
"typescript": "^4.7.4"
}
}