forked from nomcopter/react-mosaic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 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
83
84
85
86
87
88
89
90
91
{
"name": "react-mosaic-component",
"version": "1.0.2",
"description": "A React Tiling Window Manager",
"license": "Apache-2.0",
"main": "lib/index.js",
"style": "lib/react-mosaic.css",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/palantir/react-mosaic.git"
},
"scripts": {
"build": "npm-run-all clean build:ts build:less",
"build:ts": "tsc -p tsconfig-build.json",
"build:less": "lessc --source-map styles/index.less react-mosaic-component.css",
"bundle": "rm -rf docs/ && webpack --config webpack/bundle.ts",
"clean": "rm -rf lib/",
"start": "webpack-dev-server --config webpack/hot.ts",
"test": "npm-run-all build test:lint test:unit",
"test:circle": "npm-run-all build test:lint test:unit:circle",
"test:lint": "tslint --project tsconfig-build.json",
"test:unit": "mocha --opts test/mocha.opts 'test/*.ts'",
"test:unit:circle": "mocha --opts test/mocha.opts --reporter mocha-junit-reporter 'test/*.ts'",
"version": "npm run bundle && git add -A docs/"
},
"devDependencies": {
"@blueprintjs/core": "^1.31.0",
"@types/assertion-error": "^1.0.30",
"@types/chai": "^4.0.4",
"@types/classnames": "^2.2.3",
"@types/es6-promise": "^0.0.33",
"@types/html-webpack-plugin": "^2.28.0",
"@types/immutability-helper": "^2.0.15",
"@types/lodash": "^4.14.77",
"@types/mocha": "^2.2.43",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.10",
"@types/react-dnd": "^2.0.34",
"@types/react-dnd-html5-backend": "^2.1.8",
"@types/react-dom": "^16.0.1",
"@types/react-hot-loader": "^3.0.4",
"@types/uuid": "^3.4.2",
"@types/webpack": "^3.0.13",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"less": "^3.0.0-alpha.3",
"less-loader": "^4.0.5",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"npm-run-all": "^4.1.1",
"react": "^16.0.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.0.0",
"react-hot-loader": "3.0.0",
"source-map-loader": "^0.2.2",
"style-loader": "^0.19.0",
"ts-loader": "^2.3.7",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.3",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"classnames": "^2.2.5",
"immutability-helper": "^2.4.0",
"lodash": "^4.17.2",
"prop-types": "^15.6.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"uuid": "^3.0.1"
},
"peerDependencies": {
"react": "^16.0.0"
},
"keywords": [
"ui",
"palantir",
"react",
"component",
"typescript",
"tiling-window-manager",
"window-manager"
]
}