-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.29 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 4.29 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"private": true,
"workspaces": [
"packages/@ackee/*"
],
"scripts": {
"postinstall": "lerna bootstrap --use-workspaces",
"build:lib": "lerna exec -- BABEL_ENV=lib babel src --out-dir lib --extensions \".ts\" --config-file=./babel.config.js --source-maps inline",
"build:es": "lerna exec -- BABEL_ENV=es babel src --out-dir es --extensions \".ts\" --config-file=./babel.config.js --source-maps inline",
"build:test": "babel ./packages/test/src --out-dir lib --extensions \".ts\" --config-file=./babel.config.js",
"build:types:es": "lerna exec -- tsc --project ./tsconfig.types.es.json --emitDeclarationOnly",
"build:types:lib": "lerna exec -- tsc --project ./tsconfig.types.lib.json --emitDeclarationOnly",
"build:types": "yarn build:types:es && yarn build:types:lib",
"build:js": "yarn build:es & yarn build:lib",
"build": "yarn clean && yarn build:js && yarn build:types",
"clean": "lerna exec -- rm -rf lib es",
"lint": "lerna exec -- eslint 'src/**/*.ts'",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"test:root": "jest --watch",
"test:packages": "lerna exec --scope=@ackee/antonio-core -- jest --watch",
"test:ci": "lerna exec --scope=@ackee/antonio-core -- jest",
"start": "yarn build && onchange 'packages/@ackee/*/src/**/*.ts' -- yarn release:yalc",
"format": "prettier --config ./prettier.config.js --write 'packages/@ackee/*/src/**/*.ts' '*.{js,json}' --loglevel warn",
"version": "yarn changelog && code CHANGELOG.md --wait && git add CHANGELOG.md",
"changelog": "git fetch origin && gitmoji-changelog",
"release": "lerna publish --force-publish --no-push $1",
"release:prepare": "yarn build && yarn changeset",
"release:apply": "yarn changeset version && yarn changeset tag && yarn install",
"release:publish": "yarn changeset publish",
"prepare": "yarn build",
"release:yalc": "yarn prepare && lerna exec -- yalc push --no-scripts",
"circular-modules": "lerna exec -- madge --circular src",
"docs:build": "lerna exec -- typedoc --options ./typedocsOptions.js"
},
"devDependencies": {
"@ackee/browserslist-config": "^3.0.0",
"@ackee/eslint-config": "^3.0.0",
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.27.0",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@changesets/cli": "^2.28.1",
"@types/jest": "^26.0.24",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"babel-plugin-const-enum": "^1.2.0",
"eslint": "^7.32.0",
"eslint-plugin-compat": "3.13.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"gitmoji-changelog": "^2.3.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"madge": "^4.0.2",
"onchange": "^7.1.0",
"prettier": "^2.8.8",
"prettier-config-ackee": "^0.0.16",
"ts-jest": "^27.1.5",
"typedoc": "^0.21.10",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^4.9.5",
"whatwg-fetch": "^3.6.20"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn circular-modules"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"yarn format"
],
"*.{ts}": [
"yarn lint && yarn type-check"
]
},
"browserslist": [
"extends @ackee/browserslist-config"
],
"license": "MIT",
"author": "Jiří Čermák <jiri.cermak@ackee.cz>",
"repository": {
"type": "git",
"url": "git+https://github.com/AckeeCZ/antonio.git"
},
"dependencies": {
"caniuse-lite": "^1.0.30001710"
},
"version": "0.0.0",
"packageManager": "yarn@4.8.1+sha256.8c8cf7bef23cced7c138d0da3ea72d43d2626727f1ae309edb853c41ab18ef1c"
}