-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.2 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.2 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
{
"name": "data-story",
"private": true,
"workspaces": [
"packages/core",
"packages/ui",
"packages/docs",
"packages/nodejs",
"packages/hubspot",
"packages/ds-ext",
"packages/private/*"
],
"scripts": {
"set-env": "cross-env",
"demo": "yarn workspace @data-story/core run demo",
"tc": "yarn workspace @data-story/core run tinker",
"tn": "yarn workspace @data-story/nodejs run tinker",
"tui": "yarn workspace @data-story/ui run tinker",
"dev": "echo _____RUNNING_ROOT_DEV_____ && yarn kill && turbo @data-story/docs#dev",
"watch:ds-ext": "yarn kill && turbo watch ds-ext#watch",
"dev:server": "kill-port 3300 && turbo @data-story/nodejs#dev",
"kill": "kill-port 3000 3300",
"build": "turbo build",
"docs:add-nodes": "npx ts-node ./scripts/addNodesToDocs.ts",
"lint": "eslint .",
"lint:fix": "eslint '**/*.{js,jsx,ts,tsx}' --fix --no-cache",
"postinstall": "[ \"$CI\" = \"true\" ] || husky install",
"release-core": "yarn workspace @data-story/core run release && yarn release-ui && yarn release-nodejs && yarn release-ds-ext",
"release-ui": "yarn workspace @data-story/ui run release",
"release-nodejs": "yarn workspace @data-story/nodejs run release",
"release-ds-ext": "yarn workspace ds-ext run release",
"ci:test": "yarn ci:test-packages",
"ci:test-packages": "turbo test --filter=@data-story/core --filter=@data-story/ui --filter=@data-story/docs",
"core:test": "turbo test --filter=@data-story/core",
"cy:open": "cypress open",
"constraints": "yarn constraints"
},
"release-it": {
"increment": false,
"git": {
"requireCleanWorkingDir": false,
"tag": false,
"push": false
},
"github": {
"release": false
},
"npm": {
"publish": false,
"skipChecks": true,
"versionArgs": [
"--workspaces-update=false"
]
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": "eslint"
},
"version": "0.0.1",
"packageManager": "yarn@4.2.1",
"devDependencies": {
"@stylistic/eslint-plugin": "^0.1.2",
"@types/mocha": "^10.0.6",
"@types/node": "^18.14.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ws": "^8.5.4",
"@typescript-eslint/parser": "^6.9.0",
"@yarnpkg/types": "^4.0.1",
"autoprefixer": "^10.4.16",
"chokidar": "^4.0.3",
"cross-env": "^7.0.3",
"cypress": "^13.6.1",
"esbuild": "^0.21.3",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"kill-port": "^2.0.1",
"lint-staged": "^15.0.2",
"postcss": "^8.5.3",
"release-it": "^17.0.0",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-node": "10.9.2",
"turbo": "^2.5.4",
"typescript": "5.6.2",
"vite": "^5.4.8",
"vitest": "^1.6.1",
"webpack": "^5.88.1",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"zx": "^8.5.5"
},
"resolutions": {
"@uiw/codemirror-extensions-basic-setup@npm:4.23.10": "patch:@uiw/codemirror-extensions-basic-setup@npm%3A4.23.10#~/.yarn/patches/@uiw-codemirror-extensions-basic-setup-npm-4.23.10-953e998a73.patch"
}
}