-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
81 lines (81 loc) · 2.67 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "data-story",
"private": true,
"workspaces": [
"packages/core",
"packages/ui",
"packages/docs",
"packages/nodejs",
"packages/hubspot",
"packages/ds-ext",
"packages/private/*"
],
"scripts": {
"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 && yarn build && turbo dev --parallel",
"ext:dev": "turbo run ext:dev --parallel",
"watch:server": "kill-port 3300 && yarn workspace @data-story/nodejs run watch:server",
"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": "turbo test --filter=@data-story/core --filter=@data-story/ui --filter=@data-story/docs && yarn cy:component && yarn ci:e2e",
"ci:e2e": "start-server-and-test 'yarn dev -- --port 3009' 3009 'cy:e2e' ",
"core:test": "turbo test --filter=@data-story/core",
"cy:e2e": "cypress run --e2e",
"cy:component": "cypress run --component",
"cy:open": "cypress open"
},
"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": "[email protected]",
"devDependencies": {
"@stylistic/eslint-plugin": "^0.1.2",
"@types/mocha": "^10.0.6",
"@typescript-eslint/parser": "^6.9.0",
"cypress": "^13.6.1",
"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",
"pm2": "^5.4.2",
"postcss-cli": "^11.0.0",
"release-it": "^17.0.0",
"start-server-and-test": "^2.0.3",
"ts-loader": "^9.5.1",
"turbo": "<1.11.0",
"vitest": "^1.6.0",
"webpack-bundle-analyzer": "^4.10.1"
}
}