-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "chicago-craft-club",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@babel/preset-react": "^7.24.7",
"@emotion/react": "^11.11.4",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^1.0.6",
"axios": "^1.7.2",
"next": "^14.2.4",
"next-transpile-modules": "^10.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.3"
},
"devDependencies": {
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"autoprefixer": "^10.4.19",
"babel-plugin-inline-react-svg": "^2.0.2",
"eslint": "8.13.0",
"eslint-config-next": "^14.2.4",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"postcss": "^8.4.38",
"prettier": "^2.8.8",
"sass": "^1.77.6",
"tailwindcss": "^3.4.4"
},
"lint-staged": {
"**/*.{js,jsx}": [
"npx prettier --write --ignore-unknown",
"npx eslint --fix"
],
"**/*.{json,scss}": [
"npx prettier --write --ignore-unknown"
]
}
}