-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.27 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
{
"name": "ghprofile-sneakpeak",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -- -p 3000",
"build": "next build",
"start": "next start",
"p-check": "prettier --check pages/**/*.tsx components/**/*.tsx utils/**/*.ts graphql/_client.ts",
"p-format": "prettier --write pages/**/*.tsx components/**/*.tsx utils/**/*.ts graphql/_client.ts",
"codegen:schema": "apollo client:download-schema graphql/github-schema.json",
"codegen:generate": "apollo codegen:generate --localSchemaFile=graphql/github-schema.json --target=typescript --includes=**/*.graphql --addTypename @types"
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@svgr/webpack": "^5.5.0",
"apollo": "^2.32.0",
"autoprefixer": "^10.1.0",
"framer-motion": "^3.1.1",
"graphql": "^15.4.0",
"next": "10.0.4",
"postcss": "^8.2.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-emoji-render": "^1.2.4",
"react-markdown": "^5.0.3"
},
"devDependencies": {
"@types/node": "^14.14.12",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-jsx": "^2.2.8",
"typescript": "^4.1.2",
"dotenv": "^8.2.0",
"prettier": "^2.2.1",
"tailwindcss": "^2.0.2",
"tailwindcss-filters": "^3.0.0"
}
}