-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm-run-all lint:*",
"lint:js": "next lint",
"lint:css": "stylelint --fix './**/*.css' --ignore-path .gitignore",
"format": "prettier --write . --ignore-path .gitignore",
"test": "npm-run-all test:*",
"test:lint": "npm-run-all test:lint:*",
"test:lint:js": "next lint",
"test:lint:css": "stylelint './**/*.css' --ignore-path .gitignore",
"test:format": "prettier --check . --ignore-path .gitignore"
},
"dependencies": {
"@babel/runtime": "^7.23.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@headlessui/react": "^1.7.17",
"@mui/material": "^5.11.6",
"@netlify/plugin-nextjs": "^5.2.2",
"@tailwindcss/forms": "^0.5.5",
"@types/react-big-calendar": "^0.38.1",
"@types/react-dom": "^18.3.0",
"antd": "^5.17.2",
"emailjs": "^4.0.0",
"emailjs-com": "^3.2.0",
"googleapis": "^126.0.1",
"html2canvas": "^1.4.1",
"ical-generator": "^5.0.1",
"markdown-to-jsx": "^7.4.0",
"next": "^14.2.3",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-big-calendar": "^1.10.2",
"react-colorful": "^5.6.1",
"react-dom": "^18.3.1",
"sass": "^1.54.9",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-csstree-validator": "^2.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0"
},
"devDependencies": {
"@types/react": "^18.3.1",
"autoprefixer": "^10.4.0",
"eslint": "8.23.0",
"eslint-config-next": "^14.2.3",
"postcss": "^8.4.5",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.1",
"tailwindcss": "^3.3.3",
"typescript": "^4.5.4"
}
}