-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.03 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.03 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@blueprintjs/root",
"version": "0.0.0",
"private": true,
"description": "A React UI toolkit for the web.",
"packageManager": "pnpm@10.33.0",
"workspaces": [
"packages/*"
],
"scripts": {
"bundle": "nx run-many -t bundle",
"compile": "nx run-many -t compile",
"clean": "nx run-many -t 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:site": "gh-pages -d site -b gh-pages",
"dev": "nx run-many -t dev --exclude @blueprintjs/landing-app @blueprintjs/table-dev-app",
"dev:core": "nx run-many -t dev -p @blueprintjs/core @blueprintjs/icons @blueprintjs/docs-app",
"dev:docs": "nx run-many -t dev -p @blueprintjs/docs-app @blueprintjs/docs-theme",
"dev:datetime": "nx run-many -t dev -p @blueprintjs/datetime @blueprintjs/datetime2 @blueprintjs/docs-app",
"dev:select": "nx run-many -t dev -p @blueprintjs/select @blueprintjs/docs-app",
"dev:table": "nx run-many -t dev -p @blueprintjs/table @blueprintjs/table-dev-app",
"dev:demo": "nx run @blueprintjs/demo-app:dev",
"dist": "nx run-many -t dist",
"docs-data": "nx compile @blueprintjs/docs-data",
"format": "prettier --write \"./**/*.{ts,tsx,mts,mjs,js,json,yaml,yml,scss,md}\"",
"format-check": "prettier --check \"./**/*.{ts,tsx,mts,mjs,js,json,yaml,yml,scss,md}\"",
"lint": "nx run-many -t lint",
"lint-fix": "nx run-many -t lint-fix",
"serve": "http-server site",
"site": "npm-run-all site:clean -p 'copy:*' -s serve",
"site:clean": "git clean -xdfq site/",
"test": "nx run-many -t test",
"verify": "npm-run-all -s compile dist -p test lint format-check",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --stats-json",
"chromatic": "chromatic"
},
"dependencies": {
"@lerna-lite/cli": "^3.11.0",
"@lerna-lite/version": "^3.11.0",
"@types/enzyme": "~3.10.18",
"@types/enzyme-adapter-react-16": "~1.0.9",
"@types/node": "~24.12.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-transition-group": "~4.4.10",
"@types/sinon": "~17.0.3",
"@types/yargs": "~17.0.32",
"@vitejs/plugin-react": "catalog:",
"dedent": "^1.5.1",
"eslint": "^9.20.0",
"gh-pages": "^6.3.0",
"globals": "^15.14.0",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"nx": "^22.3.1",
"octokit": "^5.0.5",
"prettier": "^3.6.2",
"sinon": "^17.0.1",
"stylelint": "~16.25.0",
"stylelint-config-palantir": "^7.6.0",
"stylelint-scss": "^6.12.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "catalog:",
"yargs": "^17.7.2"
},
"pnpm": {
"overrides": {
"@types/react": "18.3.12",
"cheerio": "0.22.0"
},
"ignoredBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"core-js",
"core-js-pure",
"esbuild",
"nx",
"ttf2woff2"
]
},
"engines": {
"pnpm": "10.33.0",
"node": ">=24.14.1"
},
"repository": {
"type": "git",
"url": "git@github.com:palantir/blueprint.git"
},
"author": "Palantir Technologies",
"license": "Apache-2.0",
"devDependencies": {
"@storybook/addon-a11y": "^10.2.14",
"@storybook/addon-docs": "^10.2.14",
"@storybook/addon-themes": "^10.2.14",
"@storybook/react-dom-shim": "^10.2.14",
"@storybook/react-vite": "^10.2.14",
"chromatic": "^16.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^10.2.14",
"vite": "^7.1.12"
}
}