-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
{
"name": "overtimer",
"version": "1.0.0",
"private": true,
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@mui/icons-material": "7.3.9",
"@mui/lab": "*",
"@mui/material": "7.3.9",
"@sentry/nextjs": "10.49.0",
"@types/file-saver": "2.0.7",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"@typescript-eslint/typescript-estree": "8.58.2",
"date-fns": "4.1.0",
"dexie": "4.4.2",
"dexie-react-hooks": "4.4.0",
"file-saver": "2.0.5",
"lodash": "4.18.1",
"material-ui-popup-state": "5.3.7",
"next": "16.2.1",
"next-pwa": "5.6.0",
"notistack": "3.0.2",
"react": "19.2.5",
"react-circular-progressbar": "2.2.0",
"react-dom": "19.2.5",
"react-timer-hook": "4.0.5",
"recharts": "3.6.0",
"use-window-focus": "1.5.0"
},
"devDependencies": {
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/jest": "30.0.0",
"@types/lodash": "4.17.24",
"@types/react": "19.2.14",
"babel-jest": "30.3.0",
"cypress": "15.14.0",
"eslint": "9.39.1",
"eslint-config-next": "16.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"npm-run-all": "4.1.5",
"prettier": "3.8.3",
"start-server-and-test": "2.1.3",
"typescript": "5.9.3"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm-run-all typecheck lint jest test:e2e:headless",
"test:e2e": "start-server-and-test start http://localhost:3000 cypress",
"test:e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"jest": "jest",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"typecheck": "tsc --noEmit"
}
}