-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.6 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "vape-timer",
"version": "1.3.4",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "next lint",
"prettier": "prettier ./src --write",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"prepare": "husky",
"cypress": "cypress open",
"cypress-headless": "cypress run",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"@chakra-ui/form-control": "^2.2.0",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/theme-tools": "^2.1.2",
"@ducanh2912/next-pwa": "^10.2.8",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"framer-motion": "^11.3.29",
"next": "^14.2.6",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.12.0",
"@emotion/eslint-plugin": "^11.12.0",
"@next/eslint-plugin-next": "^14.2.6",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/dom-screen-wake-lock": "^1.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"auto-changelog": "^2.4.0",
"babel-jest": "^29.7.0",
"cypress": "^13.13.3",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"jest-wake-lock-mock": "^1.1.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"react-test-renderer": "^18.3.1",
"typescript": "^5.5.4"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"yarn prettier",
"yarn lint"
],
"src/**/*.{ts,tsx}": [
"yarn type-check"
]
},
"auto-changelog": {
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.4.0"
}