-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.23 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
{
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"commander"
],
"devDependencies": {
"@astral/commander": "*",
"@astral/commitlint-config": "^2.1.0",
"@astral/eslint-config-react-ts": "^2.1.0",
"@astral/prettier-config": "^2.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.4.1",
"commitlint": "^18.4.2",
"commitlint-plugin-function-rules": "^3.0.0",
"eslint": "^8.53.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^4.3.8",
"jest": "^27.5.1",
"lint-staged": "^11.1.2",
"read-dir-names": "1.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^27.1.4",
"typescript": "^4.4.4"
},
"scripts": {
"lint": "npm run lint:all --workspaces --if-present",
"lint:types": "npm run lint:types --workspaces --if-present",
"publish": "npm run build --workspaces --if-present && npm run publish --workspaces --if-present",
"tests": "npm run test --workspaces --if-present"
}
}