-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.9 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
{
"name": "nextjs-10",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"test": "jest --testPathPattern='__tests__/components'",
"test:file": "jest",
"test:types": "yarn tsc",
"dedupe-packages": "npx yarn-deduplicate && yarn",
"husky:pre-commit": "lint-staged",
"husky:pre-push": "concurrently \"yarn test\" \"yarn test:types\"",
"checkly:visual_tests": "cross-env LOCAL=true node ./checkly/visual_tests/public_pages.js",
"stripe:local-webhook": "stripe listen --forward-to=${BASE_URL:-localhost:3000}/api/webhook/stripe",
"apollo:sync-schema": "./scripts/sync_apollo_schema.sh"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@feedback-fish/react": "^1.2.1",
"@headlessui/react": "^0.3.1",
"@sentry/browser": "^6.2.3",
"@stripe/stripe-js": "^1.13.2",
"@tailwindcss/jit": "^0.1.10",
"@tailwindcss/line-clamp": "^0.2.0",
"@types/styletron-engine-atomic": "^1.1.0",
"@types/styletron-react": "^5.0.2",
"@types/styletron-standard": "^2.0.1",
"antd": "^4.14.1",
"autoprefixer": "^10.2.5",
"babel-plugin-import": "^1.13.3",
"baseui": "^9.112.0",
"cross-env": "^7.0.3",
"dis-gui": "^2.1.0",
"fathom-client": "^3.0.0",
"gsap": "^3.6.1",
"linkify-it": "^3.0.2",
"moment-locales-webpack-plugin": "^1.2.0",
"next": "^10.1.1",
"next-dark-mode": "^3.0.0",
"next-plugin-antd-less": "^0.3.0",
"next-seo": "^4.23.0",
"next-stripe": "^1.0.0-beta.9",
"nextjs-sitemap-generator": "^1.3.1",
"postcss": "^8.2.8",
"react": "^17.0.2",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-error-boundary": "^3.1.1",
"react-icons": "^4.2.0",
"react-loading-skeleton": "^2.2.0",
"react-lottie": "^1.2.3",
"react-toggle": "^4.1.2",
"react-use": "^17.2.1",
"styletron-engine-atomic": "^1.4.7",
"styletron-react": "^6.0.1",
"tailwindcss": "^2.0.4",
"unfurl.js": "^5.2.5",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.9",
"@testing-library/dom": "^7.30.1",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.16",
"@types/node": "^14.14.36",
"@types/react": "^17.0.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"chance": "^1.1.7",
"concurrently": "^6.0.0",
"jest": "^26.6.3",
"jest-next-dynamic": "^1.0.1",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.5.4",
"msw": "^0.28.0",
"playwright": "^1.10.0",
"playwright-core": "^1.10.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prettier-plugin-tailwind": "^2.2.10",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"vercel": "^21.3.3"
}
}