-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.02 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ts-nextjs-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently --kill-others \"next dev\" \"node terminalServer.js\"",
"next": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && npm run format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepush": "eslint --max-warnings=0 src && tsc --noEmit --incremental false && jest && prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.15",
"apexcharts": "^3.41.0",
"body-parser": "^1.20.2",
"clsx": "^1.2.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"lottie-react": "^2.4.0",
"moment": "^2.29.4",
"next": "^13.4.4",
"node-os-utils": "^1.3.7",
"node-pty": "^1.0.0",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-datepicker": "^4.15.0",
"react-dom": "^18.2.0",
"react-gauge-component": "^1.1.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.8.0",
"react-time-picker-typescript": "^1.2.3",
"socket.io": "^4.6.2",
"socket.io-client": "^4.6.2",
"systeminformation": "^5.18.4",
"tailwind-merge": "^1.12.0",
"three": "^0.134.0",
"vanta": "^0.5.24",
"victory": "^36.6.11",
"xterm": "^5.2.1",
"xterm-addon-fit": "^0.7.0"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/express": "^4.17.17",
"@types/react": "^18.2.7",
"@types/react-datepicker": "^4.11.2",
"@types/three": "^0.137.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.0",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-router-mock": "^0.7.5",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}