This repository has been archived by the owner on Oct 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.55 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
{
"name": "configs-root",
"description": "personal sharable configs",
"version": "0.0.0",
"author": "Jan Šilhan <[email protected]>",
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@monodeploy/plugin-github": "^1.2.0",
"cross-env": "^7.0.3",
"danger": "^11.3.0",
"eslint": "^8.52.0",
"eslint-find-rules": "^4.1.0",
"fs-extra": "^11.1.1",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"husky": "^8.0.3",
"jest": "^29.7.0",
"monodeploy": "^4.3.0",
"packemon": "^2.4.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"syncpack": "^11.2.1",
"typescript": "^5.2.2"
},
"license": "MIT",
"main": "index.js",
"packageManager": "[email protected]",
"private": true,
"repository": "[email protected]:rajzik/configs.git",
"scripts": {
"build": "packemon build --addEngines --declaration",
"check-eslint-deprecations": "eslint-find-rules --deprecated .eslintrc.js",
"find-unused-eslint-rules": "yarn workspace eslint-config-rajzik run check-rules",
"clean": "rimraf packages/*/{lib,dts,*.tsbuildinfo,node_modules}",
"format-package-json": "syncpack format",
"jest": "jest",
"lint": "eslint --cache --fix packages/*/{src,test}/**/*.{ts,tsx} *.{js,jsx,ts,tsx}",
"pack": "cross-env NODE_ENV=production packemon pack --addEngines --addExports --declaration",
"postinstall": "husky install",
"prepare": "yarn build && husky install",
"prettier": "prettier . --write",
"test": "yarn run pack && yarn run lint && yarn run jest"
},
"workspaces": [
"./packages/*"
]
}