-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "raideriknow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:server": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"type-check-strict": "tsc --noEmit --strict"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run build"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@vercel/analytics": "^1.2.2",
"apexcharts": "^3.47.0",
"framer-motion": "^11.0.3",
"mongoose": "^8.1.1",
"next": "14.1.0",
"react": "^18",
"react-apexcharts": "^1.4.1",
"react-dom": "^18",
"react-force-graph": "^1.44.1"
},
"devDependencies": {
"@types/node": "20.11.17",
"@types/react": "18.2.55",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^4.3.8",
"lint-staged": "^15.2.0",
"prettier": "3.2.4",
"typescript": "^5.3.3"
}
}