-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "next-simple-landing-page",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"prepublish:gh-pages": "next build && touch ./out/.nojekyll",
"deploy:gh-pages": "git add ./out/ && git commit -m \"build(deploy) : deploy by next.js methodology for gh-pages\" && git subtree push --prefix out origin gh-pages",
"publish:gh-pages": "gh-pages -d out -t true",
"start": "next start",
"lint": "next lint",
"test": "jest",
"ladle:serve": "ladle serve",
"ladle:build": "ladle build"
},
"dependencies": {
"@ladle/react": "^2.4.2",
"classnames": "^2.3.1",
"gh-pages": "^4.0.0",
"next": "12.2.5",
"normalize.css": "^8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-intersection-observer": "^9.4.0",
"sass": "^1.54.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.3",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@yek/sass": "^3.2.0",
"autoprefixer": "^10.4.8",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"jest": "^28.1.3",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"ts-jest": "^28.0.8",
"typescript": "4.8.2"
}
}