forked from event-catalog/eventcatalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.53 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
{
"name": "eventcatalog-project",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"website"
],
"scripts": {
"dev": "lerna run dev:next --stream --parallel",
"start:catalog": "node scripts/start-catalog-locally.js",
"verify-build:catalog": "node scripts/verify-build-catalog-locally.js",
"start:website": "yarn workspace website start",
"build:website": "yarn workspace website build",
"bootstrap": "lerna bootstrap",
"build": "yarn build:packages && lerna run build --ignore=@eventcatalog/core",
"build:packages": "npm run verify-build:catalog && lerna run build:package --no-private --ignore=@eventcatalog/core",
"prepublish": "lerna run prepublish",
"changelog": "lerna-changelog",
"canary": "yarn canary:bumpVersion && yarn canary:publish",
"format": "prettier --config .prettierrc --write \"**/*.{js,jsx,ts,tsx,json}\"",
"format:diff": "prettier --config .prettierrc --list-different \"**/*.{js,jsx,ts,tsx,json}\"",
"canary:version": "echo 0.0.0-`git rev-list --count HEAD`+`git rev-parse --short HEAD`",
"canary:bumpVersion": "yarn lerna version `yarn --silent canary:version` --exact --no-push --yes",
"canary:publish": "yarn lerna publish from-package --dist-tag canary --yes --no-verify-access",
"postinstall": "yarn lock:update && yarn build:packages",
"lock:update": "npx yarn-deduplicate",
"start": "lerna run start --stream",
"test": "cross-env PROJECT_DIR=/ jest",
"lint": "yarn lint:js",
"changeset": "changeset",
"release": "changeset publish",
"lint:ci": "yarn lint:js --quiet --report-unused-disable-directives",
"lint:js": "eslint --cache \"**/*.{js,jsx,ts,tsx}\""
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@changesets/changelog-github": "^0.2.7",
"@changesets/cli": "^2.10.3",
"@types/jest": "^26.0.20",
"@types/node": "^16.11.8",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"prettier": "^2.1.2",
"typescript": "^4.6.2"
}
}