-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
{
"name": "plantbassd",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "tsc --noEmit && next lint --cache --ext md,mdx,ts,tsx",
"lint.fix": "next lint --fix --ext md,mdx,ts,tsx",
"csslint": "npx stylelint **/*.scss",
"csslint.fix": "npx stylelint **/*.scss --fix",
"export": "next export",
"prepare": "husky",
"test": "jest",
"test.watch": "jest --watch"
},
"dependencies": {
"@vercel/speed-insights": "^1.0.10",
"bootstrap": "^5.3.2",
"date-fns": "^3.3.1",
"fuse.js": "^6.6.2",
"google-spreadsheet": "^3.3.0",
"gray-matter": "^4.0.3",
"marked": "^12.0.0",
"next": "^14.1.1",
"next-cloudinary": "6.0.1",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-player": "^2.14.1",
"react-responsive-masonry": "^2.1.7",
"react-transition-group": "^4.4.5",
"rellax": "^1.12.1",
"sharp": "^0.33.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/google-spreadsheet": "^3.3.1",
"@types/jest": "^29.5.12",
"@types/marked": "^5.0.2",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/react-responsive-masonry": "^2.1.3",
"@types/react-transition-group": "^4.4.10",
"@types/rellax": "^1.7.7",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/analytics": "^1.2.2",
"eslint": "8",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.2.3",
"sass": "^1.70.0",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5.3.3"
}
}