-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "front_web_mrmilu",
"version": "0.0.0",
"author": "Mr.Milú",
"license": "MIT",
"private": true,
"scripts": {
"watch": "preconstruct watch --onSuccess='yarn workspace %pkg% yalc-push'",
"dev": "preconstruct dev",
"build": "preconstruct build",
"patch": "patch-package",
"postinstall": "yarn patch-package",
"release": "commit-and-tag-version",
"generate-docs": "yarn workspaces run typedoc && node scripts/update_docusaurus_intro.js",
"test": "jest",
"test:badges": "jest --collect-coverage && make-coverage-badge",
"skip-ci": "git commit --allow-empty -m \"chore(root): [skip ci]\""
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@babel/core": "7.21.8",
"global": "4.4.0",
"patch-package": "7.0.0",
"typescript": "5.0.4",
"yalc": "1.0.0-pre.53"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.21.4",
"@babel/preset-env": "7.21.5",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.5",
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@commitlint/prompt-cli": "17.6.3",
"@preconstruct/cli": "2.7.0",
"@types/jest": "29.5.1",
"@typescript-eslint/eslint-plugin": "5.59.7",
"chalk": "5.2.0",
"commit-and-tag-version": "11.2.1",
"css-mediaquery": "0.1.2",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-chain": "1.1.6",
"jest-environment-jsdom": "29.5.0",
"jest-extended": "3.2.4",
"lint-staged": "13.2.2",
"make-coverage-badge": "1.2.0",
"postinstall-postinstall": "2.1.0",
"prettier": "2.8.8",
"ts-node": "10.9.1",
"typedoc": "0.24.7",
"typedoc-plugin-markdown": "3.15.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"resolutions": {
"@types/react": "18.0.9"
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}