-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
53 lines (53 loc) · 1.54 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 \"packages/*/+(src|test)/**\"",
"test": "npm run build:jsx-highcharts && jest",
"test:coverage": "npm run build:jsx-highcharts && jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.12",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"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.0.0",
"eslint-plugin-react-perf": "^3.3.3",
"highcharts": "^11.4.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"workspaces": {
"packages": [
"packages/react-jsx-highcharts",
"packages/react-jsx-highstock",
"packages/react-jsx-highmaps"
]
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
}
}