-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "scottylabs.org",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "bun test",
"lint": "bunx eslint src",
"lint-fix": "bunx eslint --fix src",
"format": "bunx prettier --write src",
"coverage": "bun test --coverage"
},
"dependencies": {
"@fortawesome/fontawesome-common-types": "^6.5.1",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"animejs": "^3.2.2",
"clsx": "^2.1.0",
"next": "14.1.0",
"prettier": "^3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-responsive-carousel": "^3.2.23",
"sass": "^1.71.1",
"sharp": "^0.33.2"
},
"devDependencies": {
"bun-types": "^1.0.29",
"@happy-dom/global-registrator": "^13.5.0",
"@next/codemod": "^14.1.0",
"@types/animejs": "^3.1.12",
"@types/react": "18.2.58",
"@types/react-dom": "18.2.19",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-check-updates": "^16.14.15"
}
}