-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"private": true,
"scripts": {
"build:prod": "npm run build:prod --workspaces",
"build:jsx-highcharts": "npm run build:prod --workspace packages/react-jsx-highcharts",
"lint": "eslint",
"test": "npm run build:jsx-highcharts && jest",
"test:coverage": "npm run build:jsx-highcharts && jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "^7.29.7",
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@eslint/compat": "^2.1.0",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"babel-loader": "^10.1.1",
"canvas": "^3.2.3",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-perf": "^3.3.3",
"globals": "^17.8.0",
"highcharts": "^13.0.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"prettier": "^3.9.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"webpack": "^5.109.0",
"webpack-cli": "^7.2.1"
},
"workspaces": {
"packages": [
"packages/react-jsx-highcharts",
"packages/react-jsx-highstock",
"packages/react-jsx-highmaps"
]
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
}
}