This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
117 lines (117 loc) · 4.3 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
{
"name": "keystone-heroes",
"private": true,
"license": "MIT",
"scripts": {
"build": "next build",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"db:static-data": "ts-node src/db/createStaticData && eslint --fix src/web/staticData.ts && prettier --write src/web/staticData.ts",
"dev": "next dev",
"dev-db:start": "supabase start",
"dev-db:stop": "supabase stop",
"format": "prettier --write src",
"gql:generate": "graphql-codegen --config codegen.yml && eslint src/wcl/types.ts -c .eslintrc.wcl.js --fix && prettier --write src/wcl/types.ts && prettier --write schema.json && prettier --write src/wcl/gql/schema.graphql",
"gql:introspection": "ts-node src/wcl/queries/introspection.ts",
"postinstall": "yarn db:generate && yarn-deduplicate -l && yarn db:static-data && node fix-react-package-json",
"install:clean": "rimraf yarn.lock node_modules && yarn",
"lint": "set TIMING=1 && yarn lint:web && yarn lint:wcl && yarn lint:db && yarn lint:api",
"lint:api": "eslint src/api --cache -c .eslintrc.api.js",
"lint:db": "eslint src/db --cache -c .eslintrc.db.js",
"lint:wcl": "eslint src/wcl --cache -c .eslintrc.wcl.js",
"lint:web": "eslint src/web --cache -c .eslintrc.web.js && eslint src/pages --cache -c .eslintrc.web.js",
"start": "next start",
"storybook:build": "build-storybook",
"storybook:dev": "start-storybook -p 6006",
"test": "yarn test:web && yarn test:wcl && yarn test:api",
"test:api": "jest -c jest.config.api.js",
"test:wcl": "jest -c jest.config.wcl.js",
"test:web": "jest -c jest.config.web.js",
"types": "tsc --noEmit",
"wcl:static-data": "ts-node src/wcl/queries/wcl-static-data.ts"
},
"lint-staged": {
"src/**/*": "prettier --write --ignore-unknown",
"package.json": "sort-package-json"
},
"dependencies": {
"@prisma/client": "3.13.0",
"@sentry/nextjs": "7.9.0",
"@sentry/node": "7.9.0",
"@sentry/react": "7.9.0",
"@tanem/react-nprogress": "5.0.10",
"date-fns": "2.29.1",
"dotenv": "11.0.0",
"graphql": "16.5.0",
"graphql-request": "4.3.0",
"graphql-tag": "2.12.6",
"next": "12.1.6",
"next-connect": "0.13.0",
"next-themes": "0.2.0",
"node-fetch": "2.6.1",
"prisma": "3.13.0",
"react": "npm:react@experimental",
"react-dom": "npm:react-dom@experimental",
"react-icons": "4.4.0",
"tailwindcss": "3.1.8",
"zustand": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/eslint-parser": "7.18.9",
"@babel/preset-env": "7.18.10",
"@babel/preset-typescript": "7.18.6",
"@graphql-codegen/cli": "2.11.5",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-graphql-request": "4.5.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@storybook/addon-actions": "6.5.10",
"@storybook/addon-essentials": "6.5.10",
"@storybook/addon-links": "6.5.10",
"@storybook/addon-postcss": "2.0.0",
"@storybook/builder-webpack5": "6.5.10",
"@storybook/manager-webpack5": "6.5.10",
"@storybook/react": "6.5.10",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.6",
"@types/node": "18.6.5",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/tailwindcss": "3.1.0",
"@types/test-listen": "1.1.0",
"autoprefixer": "10.4.8",
"babel-jest": "28.1.3",
"eslint": "8.21.0",
"eslint-config-galex": "4.2.0",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-mock-extended": "2.0.7",
"jest-watch-typeahead": "1.1.0",
"lint-staged": "13.0.3",
"msw": "0.44.2",
"postcss": "8.4.16",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"sort-package-json": "1.57.0",
"storybook": "6.5.10",
"test-listen": "1.1.0",
"ts-essentials": "9.2.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.7.4",
"yarn-deduplicate": "5.0.0"
},
"graphql": {
"schema": "./schema.json"
},
"hooks": {
"pre-commit": "lint-staged"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}