-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.34 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.34 KB
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
{
"name": "next-react-workbook",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "run-p 'lint:*'",
"lint:eslint": "eslint '**/*.{ts,tsx}'",
"lint:prettier": "prettier --check '**/*.{ts,tsx}'",
"gql:get-schema": "get-graphql-schema http://localhost:4000/graphql > src/@generated/schema.graphql",
"gql:codegen": "graphql-codegen --config codegen.ts",
"nft": "node ./nft.js",
"test": "yarn jest",
"prepare": "husky install",
"lint-staged": "lint-staged",
"vercel-build": "yum install libuuid-devel libmount-devel && cp /lib64/{libuuid,libmount,libblkid}.so.1 node_modules/canvas/build/Release/ && next build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"analyze": "ANALYZE=true next build"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn tsc && yarn build"
}
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@guildex/react-next-curriculum-example": "^0.5.6",
"@mdx-js/mdx": "^2.1.2",
"@nextui-org/react": "^1.0.0-beta.10",
"@react-aria/ssr": "^3.1.2",
"axios": "^0.27.2",
"canvas": "2.9.1",
"dayjs": "^1.11.3",
"graphql": "^16.6.0",
"mdx": "^0.3.1",
"next": "12.1.5",
"next-seo": "^5.4.0",
"next-themes": "^0.2.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-emoji-render": "^1.2.4",
"react-google-font-loader": "^1.1.0",
"react-icons": "^4.3.1",
"react-use": "^17.4.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@graphql-codegen/cli": "2.12.0",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-react-apollo": "3.3.3",
"@guildex/eslint-config": "^1.0.8",
"@mdx-js/loader": "^2.1.2",
"@mdx-js/react": "^2.1.2",
"@next/bundle-analyzer": "^12.2.3",
"@next/mdx": "^12.2.2",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@storybook/testing-react": "^1.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.3.0",
"@types/jest": "^28.1.6",
"@types/node": "17.0.25",
"@types/react": "18.0.5",
"@types/react-dom": "18.0.1",
"@types/styled-components": "^5.1.25",
"@vercel/nft": "^0.21.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.18.0",
"eslint-config-next": "12.1.5",
"eslint-plugin-storybook": "^0.6.1",
"get-graphql-schema": "^2.1.2",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"next-compose-plugins": "^2.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "4.5.5"
}
}