-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
executable file
·82 lines (82 loc) · 2.81 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
{
"name": "flexlayout-react",
"version": "0.8.1",
"description": "A multi-tab docking layout manager",
"main": "lib/index.js",
"types": "./declarations/index.d.ts",
"keywords": [
"react",
"layout",
"dock",
"popout",
"tabs",
"tabset",
"splitter",
"drag",
"drop",
"reactjs",
"flexlayout",
"flex layout",
"layout manager",
"drag and drop",
"split view",
"docking library",
"docking layout"
],
"scripts": {
"start": "webpack serve",
"build": "npm run css && npm run doc && npm run build:demo && npm run build:esm && npm run build:umd && npm run build:umd:min",
"build:esm": "tsc -p tsconfig2.json",
"build:umd": "webpack --mode=development --config webpack_build.config.js",
"build:umd:min": "webpack --mode=production --config webpack_build_min.config.js",
"build:demo": "webpack",
"lint:eslint": "eslint src/*",
"doc": "typedoc --out typedoc --exclude \"**/examples/**/*.tsx\" --excludeInternal --disableSources --excludePrivate --excludeProtected --readme none ./src",
"css": "sass style/rounded.scss style/rounded.css && sass style/underline.scss style/underline.css && sass style/gray.scss style/gray.css && sass style/light.scss style/light.css && sass style/light.scss test/style/light.css && sass style/dark.scss style/dark.css"
},
"author": "Caplin Systems Ltd",
"repository": "https://github.com/caplin/FlexLayout",
"license": "ISC",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fontsource/roboto": "^5.0.14",
"@mui/material": "^6.0.1",
"@types/node": "^22.5.0",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"ag-grid-community": "^32.1.0",
"ag-grid-react": "^32.1.0",
"chart.js": "^4.4.4",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.0",
"ol": "^10.1.0",
"prettier": "^3.3.3",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"sass": "^1.77.8",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"styled-components": "^6.1.13",
"ts-loader": "~9.5.1",
"typedoc": "^0.26.6",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"@mui/x-data-grid": "^7.15.0"
},
"dependencies": {
}
}