-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 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
{
"version": "1.0.0",
"repository": "https://github.com/benji6/webnotes",
"author": "benji6",
"private": true,
"scripts": {
"build": "vite build",
"fmt": "npm run test:lint -- --fix && prettier -u --write '**/*'",
"icons": "node scripts/icons.mjs",
"start": "vite",
"test": "run-p test:*",
"test:audit": "npm audit --audit-level=low",
"test:fmt": "prettier --check -u '**/*'",
"test:lint": "eslint",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@sentry/react": "^10.17.0",
"amazon-cognito-identity-js": "^6.3.6",
"date-fns": "^4.1.0",
"eri": "^47.0.0",
"idb-keyval": "^6.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.5.3"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^24.10.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^7.0.1",
"favicons": "^7.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.31.1",
"vite": "^8.0.3"
}
}