-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
53 lines (53 loc) · 1.49 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
{
"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.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@eslint/compat": "^1.2.4",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.1",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-perf": "^3.3.3",
"globals": "^15.13.0",
"highcharts": "^12.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"workspaces": {
"packages": [
"packages/react-jsx-highcharts",
"packages/react-jsx-highstock",
"packages/react-jsx-highmaps"
]
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
}
}