-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "darkweb-visualizer",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite --mode dev build",
"deploy": "vercel --prod",
"dev": "vite --mode dev",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint src tools --ext ts,tsx",
"make_dataset": "ts-node tools/make_dataset.ts",
"make_dummy": "ts-node tools/make_dummy.ts",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,less,sass,scss}": [
"stylelint --fix"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.7.1",
"@cosmograph/cosmos": "^1.3.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@vercel/edge": "^0.3.4",
"framer-motion": "^10.12.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.16.1"
},
"devDependencies": {
"@types/next": "^9.0.0",
"@types/node": "^20.4.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"stylelint": "^15.10.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.2",
"vercel": "^31.0.3",
"vite": "^4.4.0"
}
}