-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.63 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.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
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
{
"name": "new_app",
"private": true,
"version": "1.0.4",
"type": "module",
"scripts": {
"start": "vite",
"build": " rm -rf ./dist && tsc && vite build",
"preview": "vite preview",
"lint": "yarn eslint src",
"types": "yarn tsc --noEmit -p ./tsconfig.json",
"formatting": "yarn prettier -c src",
"fix": "yarn lint --fix && yarn prettier -w src && yarn types",
"extract": "lingui extract",
"compile": "lingui compile --typescript",
"deploy": "VITE_VERSION=$npm_package_version ./deploy.sh",
"test": "jest"
},
"dependencies": {
"@mantine/core": "^5.8.0",
"@mantine/dates": "^5.8.0",
"@mantine/dropzone": "^5.8.0",
"@mantine/form": "^5.8.0",
"@mantine/hooks": "^5.8.0",
"@mantine/modals": "^5.8.0",
"@mantine/notifications": "^5.8.0",
"@reduxjs/toolkit": "^1.8.3",
"dayjs": "^1.11.3",
"history": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"redux-saga": "^1.1.3",
"tabler-icons-react": "^1.52.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/jest": "^11.10.0",
"@emotion/react": "^11.10.0",
"@lingui/babel-preset-react": "^2.9.2",
"@lingui/cli": "^3.14.0",
"@lingui/core": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@lingui/react": "^3.14.0",
"@testing-library/dom": "^8.16.0",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vitejs/plugin-react": "^2.0.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-fetch-mock": "^3.0.3",
"jest-silent-reporter": "^0.5.0",
"jest-transform-stub": "^2.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-tsconfig-paths": "^3.5.0"
}
}