-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.75 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
{
"name": "floaty",
"version": "1.1.8",
"description": "Floatable dockable panels in React",
"main": "lib/es6/index.js",
"module": "lib/es6/index.js",
"browser": "lib/browser/bundle.js",
"browser.minified": "lib/browser/bundle.min.js",
"types": "lib/es6/index.d.ts",
"files": [
"src/",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/woutervh-/floaty.git"
},
"scripts": {
"start:dev": "webpack-dev-server",
"lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\"",
"build": "rimraf lib/ && tsc && copy-cli \"src/**/*.d.ts\" \"lib/es6/\" && npm run build:browser",
"build:browser": "rollup --config",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Wouter van Heeswijk",
"email": "woutervh@gmail.com",
"url": "https://github.com/woutervh-/"
},
"keywords": [
"floaty",
"react",
"dockable",
"panels",
"ui",
"draggable",
"windows",
"layout"
],
"license": "MIT",
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"classnames": "^2.2.6",
"copy": "^0.3.2",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.21.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"tslint": "^5.19.0",
"typescript": "^3.8.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"peerDependencies": {
"react": ">=15.3",
"react-dom": ">=15.3"
},
"dependencies": {
"react-managed-draggable": "^1.0.7"
}
}