-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.33 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
{
"name": "jpedromagalhaes",
"description": "João Pedro Magalhães - Desenvolvedor Front-End, UI/UX entusiasta & Gopher",
"private": true,
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"dev": "next dev",
"prebuild": "yarn contentlayer build",
"build": "next build",
"postbuild": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-sitemap.mjs && yarn prisma migrate deploy",
"start": "next start",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint --fix --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc --noEmit",
"test": "jest",
"cy:open": "cypress open",
"test:e2e": "cross-env TESTING=true start-server-and-test dev 3000 cy:open",
"prepare": "husky install",
"validate": "./scripts/validate"
},
"dependencies": {
"@next-auth/prisma-adapter": "^0.5.2-next.19",
"@prisma/client": "^4.9.0",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-alert-dialog": "^0.1.4",
"@radix-ui/react-dialog": "^0.1.3",
"@radix-ui/react-dropdown-menu": "^0.1.3",
"@radix-ui/react-tooltip": "^0.1.6",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "^0.5.0",
"classnames": "^2.3.1",
"clsx": "^1.2.1",
"contentlayer": "^0.0.33",
"kbar": "^0.1.0-beta.34",
"motion": "^10.4.0",
"next": "12.1.0",
"next-auth": "^4.0.2",
"next-compose-plugins": "^2.2.1",
"next-contentlayer": "^0.0.33",
"next-themes": "^0.0.15",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-autosize-textarea": "^7.1.0",
"react-dom": "17.0.2",
"react-hot-toast": "^2.1.1",
"react-icons": "^4.3.1",
"react-query": "^3.34.0",
"tailwind-merge": "^1.9.0",
"use-sound": "^4.0.1",
"whatwg-fetch": "^3.6.2",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@next/bundle-analyzer": "^12.0.7",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.0",
"@types/node": "16.11.10",
"@types/nprogress": "^0.2.0",
"@types/react": "17.0.37",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"cypress": "^9.6.0",
"eslint": "7",
"eslint-config-next": "12.0.4",
"globby": "^12.0.2",
"husky": ">=6",
"jest": "^27.5.1",
"lint-staged": ">=10",
"msw": "^0.39.2",
"next-router-mock": "^0.6.7",
"postcss": "^8.4.5",
"prettier": "^2.5.0",
"prettier-plugin-tailwindcss": "^0.1.8",
"prisma": "^4.9.0",
"reading-time": "^1.5.0",
"rehype": "^12.0.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-code-titles": "^1.0.3",
"rehype-prism-plus": "^1.1.3",
"rehype-slug": "^5.0.0",
"remark-gfm": "^3.0.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.2.4",
"typescript": "4.5.2",
"url-loader": "^4.1.1",
"windy-radix-palette": "^0.5.0"
},
"prettier": {
"arrowParens": "always",
"trailingComma": "none",
"singleQuote": true,
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn validate"
}
}