-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless",
"codegen": "DOTENV_CONFIG_PATH=./.env.local graphql-codegen -r dotenv/config",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write ."
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@tailwindcss/typography": "^0.5.4",
"clsx": "^1.2.1",
"graphql": "^16.5.0",
"graphql-config": "^4.3.3",
"hex-rgb": "^5.0.0",
"next": "^12.2.4",
"php-serialize": "^4.0.2",
"postcss": "^8.4.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.1.7"
},
"devDependencies": {
"@graphql-codegen/cli": "2.11.3",
"@graphql-codegen/introspection": "^2.2.0",
"@graphql-codegen/typescript": "2.7.2",
"@graphql-codegen/typescript-generic-sdk": "^2.5.0",
"@graphql-codegen/typescript-operations": "2.5.2",
"@types/node": "^18.6.4",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"autoprefixer": "^10.4.8",
"cypress": "^10.4.0",
"eslint-config-next": "^12.2.4",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"start-server-and-test": "1.14.0",
"typescript": "^4.7.4"
}
}