-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.04 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
{
"type": "module",
"private": true,
"name": "www.labelnoir.me",
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint:js": "eslint \"**/*.{js,mjs,ts,tsx}\" --cache --cache-strategy=content --cache-location=.eslintcache",
"lint:css": "stylelint \"**/*.css\" --allow-empty-input --cache --cache-strategy=content --cache-location=.stylelintcache",
"lint": "pnpm lint:js && pnpm lint:css",
"lint:fix": "pnpm lint:js --fix && pnpm lint:css --fix",
"prettier": "prettier \"**/*.{js,mjs,ts,tsx,json,yml,css}\" --check --cache --cache-strategy=content --cache-location=.prettiercache",
"prettier:fix": "pnpm prettier --write",
"format": "pnpm lint:fix && pnpm prettier:fix",
"prepare": "husky"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@gsap/react": "^2.1.1",
"classnames": "^2.5.1",
"geist": "^1.3.1",
"gsap": "^3.12.5",
"next": "14.2.11",
"react": "^18",
"react-dom": "^18",
"react-fast-marquee": "^1.6.5"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"postcss-calc": "^10.0.2",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"stylelint": "^16.9.0",
"stylelint-config-order": "^1.0.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.1",
"tailwindcss-safe-area": "^0.6.0",
"turbo": "^2.2.3",
"typescript": "^5"
}
}