-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 3.16 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
{
"name": "@ima/plugins",
"version": "1.0.0",
"scripts": {
"prepare": "husky",
"commit": "echo 'This command has been replaced with \"npm run changeset\"'",
"changeset": "changeset add",
"postinstall": "npm run build",
"build": "turbo build",
"test": "jest --changedSince `test -f '.changeset/pre.json' && echo 'next' || echo 'master'`",
"test:all": "jest --colors",
"lint:cmd": "eslint -c ./.eslintrc.js --ignore-path ./.gitignore",
"lint": "eslint --cache --cache-location=node_modules/.cache/ './**/*.{js,jsx,ts,tsx,mjs}'",
"lint:fix": "npm run lint -- --fix",
"stylelint": "stylelint --cache --cache-location=node_modules/.cache/ './**/*.{css,less}'",
"precommit": "lint-staged",
"release": "npm run release:prepare && npm run release:push",
"release:prepare": "npm run check:uncommited:changes && changeset version && npm i --package-lock-only --ignore-scripts",
"release:push": "git add .changeset package-lock.json packages/*/CHANGELOG.md packages/*/package.json && git commit -m 'release: publish' && changeset tag && git push --follow-tags",
"release:graduate": "npm run check:uncommited:changes && changeset pre exit && changeset version",
"release:next:init": "changeset pre enter rc",
"release:publish": "changeset publish --no-git-tag",
"check:uncommited:changes": "test \"`git status . --porcelain`\" && echo 'There are uncommitted changes. Aborting release.' && exit 1 || exit 0"
},
"workspaces": [
"./packages/*"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mjs}": "eslint",
"**/*.{css,less}": "stylelint"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@changesets/cli": "^2.27.9",
"@eslint/compat": "^1.2.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@ima/plugin-cli": "^19.1.3",
"@ima/testing-library": "^19.10.0",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.2.5",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-less": "^6.0.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stylelint": "^16.10.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4",
"swc_mut_cjs_exports": "^0.109.1",
"to-mock": "^1.6.2",
"turbo": "^2.2.3",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.1"
},
"packageManager": "[email protected]"
}