-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "itsb",
"version": "1.0.0",
"description": "In The Same Boats",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"prepare": "husky install"
},
"main": "src/index.jsx",
"author": "",
"license": "ISC",
"dependencies": {
"@peripleo/peripleo": "0.1.12",
"d3-scale": "^4.0.2",
"date-fns": "^2.29.3",
"diacritics": "^1.3.0",
"fuse.js": "^6.6.2",
"ngraph.graph": "^20.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-router-dom": "^6.4.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jsdoc": "^39.4.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"process": "^0.11.10",
"vite": "^3.1.3",
"vitest": "^0.24.0"
},
"lint-staged": {
"**/*.{js,jsx}": [
"npx prettier --write",
"npx eslint --fix"
],
"**/*.{css}": [
"npx prettier --write"
]
}
}