-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.96 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
60
61
62
63
64
65
66
{
"name": "overtimer",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mui/icons-material": "5.16.7",
"@mui/lab": "*",
"@mui/material": "5.16.7",
"@sentry/nextjs": "7.119.2",
"@types/file-saver": "2.0.7",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/typescript-estree": "7.6.0",
"date-fns": "3.6.0",
"dexie": "4.0.8",
"dexie-react-hooks": "1.1.7",
"file-saver": "2.0.5",
"lodash": "4.17.21",
"material-ui-popup-state": "5.3.1",
"next": "14.2.16",
"next-pwa": "5.6.0",
"notistack": "3.0.1",
"react": "18.2.0",
"react-circular-progressbar": "2.1.0",
"react-dom": "18.2.0",
"react-timer-hook": "3.0.8",
"recharts": "2.12.3",
"use-window-focus": "1.4.3",
"usehooks-ts": "3.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.0",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.13",
"@types/react": "18.2.75",
"babel-jest": "29.7.0",
"cypress": "13.7.2",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"start-server-and-test": "2.0.8",
"typescript": "5.5.3"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --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"
}
}