forked from palantir/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.23 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
{
"name": "blueprintjs-monorepo",
"version": "5.0.0-alpha.0",
"private": true,
"description": "A React UI toolkit for the web.",
"workspaces": [
"packages/*"
],
"scripts": {
"bundle": "lerna run bundle",
"compile": "lerna run compile",
"clean": "lerna run clean",
"copy:ci-config": "mkdir -p site/.circleci && cp .circleci/config-gh-pages.yml site/.circleci/config.yml",
"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 gh-pages",
"dev": "lerna run dev --ignore \"@blueprintjs/{landing-app,table-dev-app}\"",
"dev:core": "lerna run dev --scope \"@blueprintjs/{core,icons,docs-app}\"",
"dev:docs": "lerna run dev --scope \"@blueprintjs/{core,docs-app,docs-theme}\"",
"dev:datetime": "lerna run dev --scope \"@blueprintjs/{datetime,timezone,docs-app}\"",
"dev:select": "lerna run dev --scope \"@blueprintjs/{select,docs-app}\"",
"dev:table": "lerna run dev --scope \"@blueprintjs/{table,table-dev-app}\"",
"dist": "run-s dist:libs dist:apps",
"dist:libs": "lerna run dist --scope \"@blueprintjs/{colors,core,datetime,datetime2,docs-theme,icons,popover2,select,table}\"",
"dist:apps": "lerna run dist --scope \"@blueprintjs/{docs-app,landing-app,table-dev-app,demo-app}\"",
"docs-data": "lerna run compile --scope \"@blueprintjs/docs-data\"",
"format": "prettier --write \"./**/*.{ts,tsx,json}\"",
"format-check": "prettier --check \"./**/*.{ts,tsx,json}\"",
"lint": "lerna run lint",
"lint-fix": "lerna run 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 test",
"verify": "npm-run-all -s compile dist:libs dist:apps -p test lint format-check"
},
"dependencies": {
"@types/chai": "~4.3.5",
"@types/enzyme": "~3.10.12",
"@types/enzyme-adapter-react-16": "~1.0.6",
"@types/mocha": "~10.0.1",
"@types/node": "~18.16.16",
"@types/react": "~16.14.32",
"@types/react-dom": "~16.9.10",
"@types/react-transition-group": "~4.4.5",
"@types/sinon": "~10.0.13",
"@types/yargs": "~17.0.22",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"dedent": "^0.7.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"http-server": "^14.1.1",
"lerna": "^6.5.1",
"npm-run-all": "^4.1.5",
"octokit": "^2.0.19",
"prettier": "~2.8.7",
"sinon": "^15.0.3",
"stylelint-config-palantir": "^6.0.1",
"stylelint-scss": "^4.6.0",
"typescript": "~4.9.5",
"yargs": "^17.6.0",
"yarn-deduplicate": "^6.0.1"
},
"resolutions": {
"@types/react": "16.14.32"
},
"engines": {
"node": ">=18.13"
},
"repository": {
"type": "git",
"url": "[email protected]:palantir/blueprint.git"
},
"author": "Palantir Technologies",
"license": "Apache-2.0"
}