-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 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
{
"name": "timesheet",
"private": true,
"license": "MIT",
"engines": {
"node": "24"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next export",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' 'pages/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}' 'pages/**/*.{js,jsx,ts,tsx}'",
"start": "next start",
"check-types": "tsc --noemit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:unit": "jest",
"ci:test:unit": "jest --silent"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@reduxjs/toolkit": "^2.0.1",
"@vvo/tzdb": "^6.124.0",
"antd": "^5.12.5",
"clsx": "^2.0.0",
"dayjs": "^1.11.3",
"final-form": "^4.20.7",
"next": "^16.1.6",
"parse-duration": "^2.1.4",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-intl": "^6.5.5",
"react-is": "^18.2.0",
"react-redux": "^9.0.4",
"react-use": "^17.4.2"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@evrone-erp/eslint-config": "^2.0.2",
"@evrone-erp/prettier-config": "^1.0.43",
"@storybook/addon-docs": "^10.2.8",
"@storybook/addon-links": "^10.2.8",
"@storybook/nextjs": "^10.2.8",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.45",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.1",
"sass": "^1.52.2",
"storybook": "^10.2.8"
}
}