-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.98 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "npx husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prettier": "prettier --check \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"prettier:write": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix"
},
"dependencies": {
"@firastar/firastar-js": "^0.1.2",
"@n8tb1t/use-scroll-position": "^2.0.3",
"@sentry/nextjs": "^6.19.7",
"animate.css": "^4.1.1",
"autosize": "^5.0.1",
"clsx": "^1.1.1",
"debounce": "^1.2.1",
"lodash.throttle": "^4.1.1",
"next": "^12.2.5",
"next-i18next": "^11.0.0",
"next-seo": "^5.5.0",
"next-themes": "^0.1.1",
"nextjs-progressbar": "^0.0.14",
"react": "18.0.0",
"react-compare-slider": "^2.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.0.0",
"react-stars": "^2.2.5",
"react-toggle": "^4.1.2",
"sharp": "^0.30.7"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/debounce": "^1.2.1",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "17.0.25",
"@types/react": "18.0.6",
"@types/react-dom": "18.0.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.13.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"postcss": "^8.4.12",
"postcss-nested": "^5.0.6",
"prettier": "^2.6.2",
"sass": "^1.51.0",
"stylelint": "^14.7.1",
"stylelint-config-standard-scss": "^3.0.0",
"tailwindcss": "^3.0.24",
"typescript": "4.6.3"
}
}