-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.27 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
{
"name": "treewatch-frontend",
"license": "MIT",
"version": "1.0.0-staging.9",
"scripts": {
"cm": "cz",
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --maxWorkers=50% --coverage --collectCoverageFrom='./(src|pages)/**/*.ts(x)?' --collectCoverageFrom='!./(src|pages)/**/*.stories.ts(x)?'",
"test:watch": "npm run test -- --watch",
"test:ci": "jest --runInBand",
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint-fix": "npm run lint -- --fix",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"generate-types": "echo \"// types generated by supabase cli don't edit manually\" > src/lib/types/database.ts && ./scripts/supabase-gen-types.sh >> src/lib/types/database.ts && prettier --write src/lib/types/database.ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@headlessui/react": "1.6.6",
"@mdx-js/loader": "2.1.2",
"@next/mdx": "12.2.0",
"@supabase/postgrest-js": "1.1.1",
"@tailwindcss/typography": "0.5.4",
"classnames": "2.3.1",
"cross-fetch": "3.1.5",
"csrf": "3.1.0",
"csurf": "1.11.0",
"date-fns": "2.29.1",
"lottie-web": "5.10.0",
"maplibre-gl": "2.1.9",
"next-translate": "1.5.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-slick": "0.29.0",
"react-use-measure": "2.1.1",
"slick-carousel": "1.8.1",
"swr": "1.3.0",
"use-debounce": "8.0.1"
},
"devDependencies": {
"@saithodev/semantic-release-backmerge": "2.1.2",
"@storybook/addon-actions": "6.5.13",
"@storybook/addon-essentials": "6.5.13",
"@storybook/addon-links": "6.5.13",
"@storybook/addon-postcss": "2.0.0",
"@storybook/react": "6.5.13",
"@technologiestiftung/semantic-release-config": "1.2.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "14.4.3",
"@types/csurf": "1.11.2",
"@types/express": "4.17.13",
"@types/jest": "27.5.2",
"@types/node": "20.10.6",
"@types/react": "17.0.52",
"@types/react-dom": "17.0.18",
"@types/react-slick": "0.23.10",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"autoprefixer": "10.4.13",
"babel-jest": "27.5.1",
"babel-loader": "8.2.5",
"canvas": "2.11.2",
"commitizen": "4.2.5",
"eslint": "7.32.0",
"eslint-config-next": "12.3.2",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"jest-fetch-mock": "3.0.3",
"jest-watch-typeahead": "1.1.0",
"lint-staged": "12.5.0",
"next": "12.3.2",
"postcss": "8.4.18",
"prettier": "2.7.1",
"storybook-addon-next-router": "3.1.1",
"storybook-css-modules-preset": "1.1.1",
"tailwindcss": "3.1.4",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.8.4"
}
}