-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "vxcontrol-website",
"version": "1.0.0",
"description": "",
"private": "true",
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:stats": "ANALYZE=true npm run build",
"start": "next start",
"prepare": "husky install",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"preview": "next build && next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vxcontrol/vxcontrol.com.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/vxcontrol/vxcontrol.com/issues"
},
"homepage": "https://github.com/vxcontrol/vxcontrol.com#readme",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"dependencies": {
"js-cookie": "^3.0.1",
"next": "12.3.3",
"next-translate": "1.3.3",
"react": "18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.56.1",
"tailwindcss-animate": "^1.0.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.3",
"@svgr/webpack": "^6.2.1",
"@tailwindcss/typography": "^0.5.8",
"@types/node": "^16.18.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"eslint": "^8.27.0",
"eslint-config-next": "^13.0.3",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.31",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.4",
"typescript": "4.7.4"
}
}