-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
50
51
52
53
54
{
"name": "seium_landing",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "npm-run-all develop",
"develop": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "plop --plopfile generator/plopfile.js",
"prepare": "husky install",
"fmt": "npx npm-run-all format",
"format": "npx prettier --ignore-path .gitignore '!**/*.hbs' --write .",
"test": "npm-run-all test:*",
"test:lint": "npm-run-all test:lint:*",
"test:lint:js": "next lint",
"test:format": "npx prettier --check . --ignore-path .gitignore '!**/*.hbs'"
},
"lint-staged": {
"**/!(*.hbs)": "prettier --ignore-unknown"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"lottie-react": "^2.4.0",
"next": "^14.2.13",
"react": "18.2.0",
"react-cool-inview": "^2.0.8",
"react-dom": "18.2.0",
"react-icons": "^4.8.0"
},
"devDependencies": {
"@types/node": "18.7.18",
"@types/qrcode": "^1.5.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-next": "^12.0.5",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.2.1",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"postcss": "^8.4.21",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.1",
"tailwindcss": "^3.2.7",
"typescript": "4.8.3"
}
}