-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "saleor-app-template",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fetch-schema": "curl https://raw.githubusercontent.com/saleor/saleor/${npm_package_saleor_schemaVersion}/saleor/graphql/schema.graphql > graphql/schema.graphql",
"generate": "graphql-codegen",
"test": "vitest",
"check-types": "tsc --noEmit"
},
"saleor": {
"schemaVersion": "3.20"
},
"engines": {
"node": ">=18.17.0 <=20",
"pnpm": ">=9"
},
"dependencies": {
"@saleor/app-sdk": "0.50.0",
"@saleor/macaw-ui": "1.1.10",
"@urql/exchange-auth": "^1.0.0",
"@vitejs/plugin-react": "4.2.1",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"jsdom": "^20.0.3",
"next": "14.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"urql": "^4.0.2",
"vite": "5.2.10",
"vitest": "1.5.2"
},
"packageManager": "pnpm@9.12.3",
"devDependencies": {
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/introspection": "3.0.1",
"@graphql-codegen/schema-ast": "^3.0.1",
"@graphql-codegen/typed-document-node": "4.0.1",
"@graphql-codegen/typescript": "3.0.4",
"@graphql-codegen/typescript-operations": "3.0.4",
"@graphql-codegen/typescript-urql": "^3.7.3",
"@graphql-codegen/urql-introspection": "2.2.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@saleor/eslint-plugin-saleor-app": "^0.1.2",
"@types/node": "^18.11.18",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"eslint": "8.31.0",
"eslint-config-next": "13.1.2",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.2",
"typescript": "5.0.4"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md,json}": "prettier --write"
}
}