-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.82 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "unocha",
"version": "1.9.2",
"license": "Apache-2.0",
"scripts": {
"remove-unneeded-deps": "node tools/remove-unneeded-deps.js",
"nx": "nx",
"start": "nx serve",
"check-types": "tsc --noEmit --project tsconfig.base.json",
"build": "nx build",
"test": "nx test",
"lint": "nx affected:lint && nx lint && prettier --check '**/*.{ts,tsx,js}'",
"lint:fix": "nx affected:lint --fix && nx lint --fix && prettier --write '**/*.{js,ts,tsx,md,json}'",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint && lint-staged",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator",
"prepare": "husky install"
},
"engines": {
"node": ">=18.18.2 || >=20.9.0",
"npm": ">=9.5.1 || >=10.2.2"
},
"lint-staged": {
"*.{js,ts,tsx,md,json}": [
"prettier --check"
]
},
"private": true,
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.4",
"@mui/icons-material": "5.16.7",
"@mui/material": "5.16.7",
"@mui/styled-engine-sc": "5.14.12",
"@mui/x-date-pickers": "7.15.0",
"@nx/cypress": "18.3.0",
"@nx/eslint": "18.3.0",
"@nx/eslint-plugin": "18.3.0",
"@nx/jest": "18.3.0",
"@nx/js": "18.3.0",
"@nx/node": "18.3.0",
"@nx/react": "18.3.0",
"@nx/web": "18.3.0",
"@nx/webpack": "18.3.0",
"@nx/workspace": "18.3.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.2",
"@types/jquery": "^3.5.1",
"@types/lodash": "^4.14.158",
"@types/node": "20.8.10",
"@types/react": "18.3.5",
"@types/react-beautiful-dnd": "13.1.8",
"@types/react-dom": "18.3.0",
"@types/react-helmet": "6.1.11",
"@types/react-is": "18.3.0",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"autoprefixer": "10.4.20",
"babel-jest": "29.5.0",
"babel-plugin-macros": "3.1.0",
"babel-plugin-styled-components": "2.1.1",
"babel-plugin-twin": "1.1.0",
"bowser": "^2.11.0",
"cypress": "9.5.4",
"dayjs": "^1.11.7",
"dotenv": "16.0.3",
"enketo-core": "^5.16.6",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.13.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"exceljs": "4.4.0",
"formik": "2.4.6",
"fp-ts": "^2.14.0",
"husky": "8.0.3",
"intl-list-format": "^1.0.3",
"intl-messageformat": "^10.3.4",
"io-ts": "^2.2.20",
"jest": "29.5.0",
"lint-staged": "15.0.2",
"nx": "18.3.0",
"oidc-client": "^1.11.5",
"postcss": "8.4.44",
"prettier": "3.0.3",
"react": "18.2.0",
"react-beautiful-dnd": "13.1.1",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"react-icons": "4.9.0",
"react-is": "18.2.0",
"react-number-format": "5.4.1",
"react-refresh": "0.14.0",
"react-router": "7.0.2",
"react-toastify": "11.0.3",
"styled-components": "5.3.10",
"tailwindcss": "3.4.10",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"twin.macro": "3.4.1",
"typescript": "5.2.2"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
}
}