forked from caplin/FlexLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 2.52 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
{
"name": "flexlayout-react",
"version": "0.7.3",
"description": "A multi-tab docking layout manager",
"main": "lib/index.js",
"types": "./declarations/index.d.ts",
"keywords": [
"react",
"layout",
"dock",
"popout",
"tabs",
"drag-and-drop",
"tabset",
"splitter",
"drag",
"drop",
"reactjs",
"react-dom"
],
"scripts": {
"start": "webpack serve",
"build": "npm run css && npm run test && npm run doc && npm run build:demo && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "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/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",
"cypress": "cypress open-ct",
"cypress-firefox": "cypress open-ct --browser firefox",
"test": "cypress run-ct"
},
"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": {
"@cypress/react": "^5.12.4",
"@cypress/webpack-dev-server": "^1.8.4",
"@types/node": "^17.0.24",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/uuid": "^8.3.3",
"css-loader": "^6.7.1",
"cypress": "^9.5.4",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.6.2",
"prismjs": "^1.28.0",
"react-scripts": "5.0.1",
"sass": "^1.50.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"ts-loader": "~9.2.8",
"typedoc": "^0.22.15",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"uuid": "^8.3.2"
}
}