-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.07 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
{
"name": "website-next",
"version": "1.1.0",
"private": true,
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"dev": "next dev",
"lint": "next lint",
"build": "run-s build:*",
"build:pages": "next build",
"build:sitemap": "next-sitemap",
"start": "next start",
"prepare": "husky install",
"prettier": "prettier -w \"./**/*.{ts,tsx,js,jsx,scss,yaml,yml}\"",
"tailwind:config-viewer": "npx -y tailwind-config-viewer",
"tailwind:export": "npx -y tailwind-config-viewer export ./styleguide",
"graphql:watch": "graphql-codegen --watch",
"graphql:generate": "graphql-codegen",
"graphql:introspect": "node ./bin/introspect-graphql-schema.js",
"pwa:generate": "node pwa-asset-generator.js"
},
"dependencies": {
"@apollo/client": "3.7.13",
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-brands-svg-icons": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@headlessui/react": "1.7.14",
"@heroicons/react": "2.0.17",
"axios": "0.26.1",
"classnames": "2.3.2",
"date-fns": "2.29.3",
"dompurify": "3.0.2",
"focus-trap": "7.4.0",
"graphql": "16.6.0",
"js-cookie": "3.0.5",
"jsdom": "21.1.1",
"lazysizes": "5.3.2",
"mapbox-gl": "2.14.1",
"next": "13.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"react-transition-group": "4.4.5",
"stacktrace-js": "2.0.2",
"xss": "1.0.14"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@graphql-codegen/add": "3.1.1",
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/introspection": "3.0.1",
"@graphql-codegen/schema-ast": "3.0.1",
"@graphql-codegen/typescript": "3.0.4",
"@graphql-codegen/typescript-operations": "3.0.4",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"@next/bundle-analyzer": "^13.4.2",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.9",
"@types/dompurify": "3.0.2",
"@types/js-cookie": "3.0.3",
"@types/jsdom": "21.1.1",
"@types/mapbox-gl": "2.7.11",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-transition-group": "4.4.5",
"@types/uuid": "9.0.1",
"autoprefixer": "10.4.14",
"cross-env": "^7.0.3",
"cssnano": "6.0.0",
"dotenv": "16.0.3",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"next-sitemap": "4.0.7",
"npm-run-all": "4.1.5",
"postcss": "8.4.31",
"prettier": "^2.8.8",
"pwa-asset-generator": "^6.2.1",
"schema-dts": "^1.1.2",
"tailwindcss": "3.0.24",
"typescript": "4.9.4",
"uuid": "9.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,scss,yaml,md}": "prettier --write"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": true
}
}