forked from palantir/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.76 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": "blueprintjs-monorepo",
"version": "3.18.0",
"private": true,
"description": "A React UI toolkit for the web.",
"workspaces": [
"packages/*"
],
"scripts": {
"bundle": "lerna run --parallel bundle",
"compile": "lerna run compile",
"clean": "lerna run --parallel clean",
"copy:docs-app": "cp -rf packages/docs-app/dist/ site/docs",
"copy:landing-app": "cp -rf packages/landing-app/dist/ site",
"deploy": "gh-pages -d site -b master",
"dev": "lerna run dev --parallel --scope \"!@blueprintjs/{landing-app,table-dev-app}\"",
"dev:core": "lerna run dev --parallel --scope \"@blueprintjs/{core,icons,docs-app}\"",
"dev:docs": "lerna run dev --parallel --scope \"@blueprintjs/{core,docs-app,docs-theme}\"",
"dev:datetime": "lerna run dev --parallel --scope \"@blueprintjs/{core,datetime,timezone,docs-app}\"",
"dev:landing": "lerna run dev --parallel --scope \"@blueprintjs/{core,landing-app}\"",
"dev:select": "lerna run dev --parallel --scope \"@blueprintjs/{core,select,docs-app}\"",
"dev:table": "lerna run dev --parallel --scope \"@blueprintjs/table-dev-app\"",
"dist": "run-s dist:libs dist:apps",
"dist:libs": "lerna run dist --parallel --scope \"@blueprintjs/{core,datetime,docs-theme,icons,select,table,timezone}\"",
"dist:apps": "lerna run dist --parallel --scope \"@blueprintjs/{docs-app,landing-app,table-dev-app}\"",
"docs-data": "lerna run compile --scope \"@blueprintjs/docs-data\"",
"lint": "lerna run --parallel lint",
"lint-fix": "lerna run --parallel lint-fix",
"serve": "http-server site",
"site": "npm-run-all site:clean -p copy:* -s serve",
"site:clean": "git clean -xdfq site/",
"test": "lerna run --parallel test",
"verify": "npm-run-all -s compile dist:libs dist:apps -p test lint"
},
"dependencies": {
"@types/chai": "4.1.7",
"@types/classnames": "2.2.9",
"@types/enzyme": "3.10.3",
"@types/enzyme-adapter-react-16": "1.0.5",
"@types/mocha": "5.2.7",
"@types/prop-types": "15.7.1",
"@types/react": "16.8.23",
"@types/react-dom": "16.8.5",
"@types/react-transition-group": "4.2.0",
"@types/sinon": "7.0.13",
"@types/webpack": "4.32.1",
"chai": "^4.2.0",
"circle-github-bot": "^2.0.1",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.1",
"http-server": "^0.11.1",
"lerna": "^2.11.0",
"npm-run-all": "^4.1.5",
"sinon": "^7.3.2",
"stylelint-config-palantir": "^4.0.0",
"stylelint-scss": "^3.9.2",
"typescript": "~3.5.3",
"yarn-deduplicate": "^1.1.1"
},
"resolutions": {
"js-yaml": "3.13.1"
},
"engines": {
"node": ">=6.1"
},
"repository": {
"type": "git",
"url": "[email protected]:palantir/blueprint.git"
},
"author": "Palantir Technologies",
"license": "Apache-2.0"
}