-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.64 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
{
"private": true,
"license": "MIT",
"scripts": {
"test-packages": "yarn nx run-many --target=test --projects tag:type:lib --verbose",
"build-packages": "nx run-many --target=build --projects tag:type:lib --verbose",
"build-packages:watch": "nx watch --projects tag:type:lib -- nx run \\$NX_PROJECT_NAME:build",
"lint-packages": "yarn nx run-many --target=lint --projects tag:type:lib --verbose",
"prepare": "husky install"
},
"devDependencies": {
"@emotion/babel-plugin": "11.11.0",
"@nx/esbuild": "19.3.0",
"@nx/eslint": "19.3.0",
"@nx/eslint-plugin": "19.3.0",
"@nx/jest": "19.3.0",
"@nx/js": "19.3.0",
"@nx/react": "19.3.0",
"@nx/vite": "19.3.0",
"@nx/web": "19.3.0",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@types/jest": "^29.5.1",
"@types/jest-when": "^3.5.2",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-react": "^4.2.0",
"esbuild": "^0.20.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-when": "^3.5.2",
"lint-staged": "^15.2.2",
"nx": "19.3.0",
"prettier": "^3.0.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"engines": {
"yarn": "^1.10.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
]
}