-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 KB
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
{
"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.5",
"axios": "^1.7.2",
"bootstrap": "^5.0.0-alpha1",
"clsx": "^1.1.1",
"next": "^14.2.5",
"next-seo": "^4.17.0",
"react": "^18",
"react-dom": "^18",
"react-feather": "^2.0.8",
"react-ga": "^3.2.1",
"react-hook-form": "^7.52.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^8.0.1",
"sass": "^1.33"
}
}