-
Notifications
You must be signed in to change notification settings - Fork 217
/
package.json
94 lines (94 loc) · 3.74 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "root",
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:annotations": "lerna run build --scope='*/annotations'",
"build:axes": "lerna run build --scope='*/axes'",
"build:charts": "lerna run build --scope='react-financial-charts'",
"build:coordinates": "lerna run build --scope='*/coordinates'",
"build:core": "lerna run build --scope='*/core'",
"build:indicators": "lerna run build --scope='*/indicators'",
"build:interactive": "lerna run build --scope='*/interactive'",
"build:scales": "lerna run build --scope='*/scales'",
"build:series": "lerna run build --scope='*/series'",
"build:tooltip": "lerna run build --scope='*/tooltip'",
"build:utils": "lerna run build --scope='*/utils'",
"clean": "run-s clean:packages clean:modules",
"clean:packages": "lerna run clean",
"clean:modules": "lerna clean --yes",
"convert": "run-s link bootstrap",
"docs": "run-s build docs:stories",
"docs:stories": "lerna run docs --stream",
"link": "lerna link convert",
"lint": "eslint . --ext ts --ext tsx --quiet",
"lint:fix": "eslint . --ext ts --ext tsx --quiet --fix",
"start": "run-p watch start:stories",
"start:stories": "lerna run start --stream",
"test": "lerna run test --stream",
"prestart": "npm run build",
"prepublishOnly": "npm run build",
"publish": "lerna publish from-package --yes",
"release": "lerna version --yes",
"release:pre": "lerna version --conventional-prerelease --yes",
"release:grad": "lerna version --conventional-graduate --yes",
"watch": "lerna run watch --parallel"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.13.1",
"@storybook/addon-actions": "^6.1.20",
"@storybook/addon-docs": "^6.1.20",
"@storybook/addon-essentials": "^6.1.20",
"@storybook/react": "^6.1.20",
"@storybook/theming": "^6.1.20",
"@types/d3-array": "^2.9.0",
"@types/d3-dsv": "^2.0.1",
"@types/d3-force": "^2.1.1",
"@types/d3-format": "^2.0.0",
"@types/d3-interpolate": "^2.0.0",
"@types/d3-path": "^2.0.0",
"@types/d3-scale": "^3.2.2",
"@types/d3-selection": "^2.0.0",
"@types/d3-shape": "^2.0.0",
"@types/d3-time-format": "^3.0.0",
"@types/lodash.flattendeep": "^4.4.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-loader": "^8.2.2",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"find-cache-dir": "3.3.1",
"lerna": "^6.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"react-docgen-typescript-loader": "^3.7.2",
"rimraf": "^5.0.0",
"source-map-loader": "^1.1.0",
"ts-loader": "^8.0.12",
"typescript": "^4.9.5"
},
"dependencies": {
"@react-financial-charts/annotations": "file:packages/annotations",
"@react-financial-charts/axes": "file:packages/axes",
"@react-financial-charts/coordinates": "file:packages/coordinates",
"@react-financial-charts/core": "file:packages/core",
"@react-financial-charts/indicators": "file:packages/indicators",
"@react-financial-charts/interactive": "file:packages/interactive",
"@react-financial-charts/scales": "file:packages/scales",
"@react-financial-charts/series": "file:packages/series",
"@react-financial-charts/stories": "file:packages/stories",
"@react-financial-charts/tooltip": "file:packages/tooltip",
"@react-financial-charts/utils": "file:packages/utils",
"react-financial-charts": "file:packages/charts"
}
}