-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1012 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1012 Bytes
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
{
"name": "techladies",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "next build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy Next.js to gh-pages\" && git subtree push --prefix out origin gh-pages",
"format": "prettier --write 'src/**/*.js'",
"prettier": "prettier --check 'src/**/*.js'"
},
"dependencies": {
"@next/third-parties": "^14.2.35",
"axios": "^1.7.9",
"bootstrap": "^5.3.8",
"clsx": "^1.2.1",
"next": "^14.2.35",
"next-seo": "^6.8.0",
"react": "^18",
"react-dom": "^18",
"react-feather": "^2.0.8",
"react-ga": "^3.2.1",
"react-hook-form": "^7.52.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.35",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.4.2",
"sass": "^1.83.0"
}
}