forked from caplin/FlexLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 2.03 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
{
"name": "flexlayout-react",
"version": "0.5.19",
"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 build:commonjs && npm run build:umd && npm run build:umd:min && npm run css",
"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",
"test": "jasmine",
"lint:eslint": "eslint src/*",
"doc": "typedoc --out typedoc --exclude \"**/examples/**/*.tsx\" --excludeInternal --disableSources --excludePrivate --excludeProtected --readme none ./src",
"css": "sass style/gray.scss style/gray.css && sass style/light.scss style/light.css && sass style/dark.scss style/dark.css"
},
"author": "Caplin Systems Ltd",
"repository": "https://github.com/caplin/FlexLayout",
"license": "ISC",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@types/jasmine": "^3.7.2",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.4",
"@types/uuid": "^8.3.1",
"awesome-typescript-loader": "^5.2.0",
"jasmine": "^3.7.0",
"prettier": "^2.3.0",
"react-scripts": "4.0.3",
"sass": "^1.32.12",
"source-map-loader": "^1.1.2",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"uuid": "^8.3.2"
}
}