-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"homepage": "https://adelevett.github.io/MyTypeMeasure/",
"name": "keystrokelogger",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=20.x"
},
"scripts": {
"vite": "vite",
"server": "nodemon server.cjs",
"dev": "concurrently \"npm run server\" \"npm run vite\"",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start": "serve -s dist",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"recharts": "^3.7.0"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.3.0",
"serve": "^14.2.4",
"vite": "^7.3.1"
}
}