-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 3.02 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "blueprint-styler",
"version": "5.0.2",
"description": "Make custom blueprint.css styles",
"author": "James Bradford",
"repository": {
"type": "git",
"url": "https://github.com/pnnl/blueprint-styler"
},
"license": "BSD-3-Clause",
"homepage": "https://pnnl.github.io/blueprint-styler",
"main": "./build/index.html",
"files": [
"/base",
"/overrides"
],
"keywords": [
"palantir",
"blueprint",
"css",
"styles"
],
"engines": {
"node": "<19.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "yarn run build:react && yarn run build:libs",
"build:react": "react-scripts build",
"build:libs": "yarn run gulp",
"build:deploy:publish": "yarn build && yarn version:alpha && yarn deploy && npm publish",
"node-sass": "node-sass",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn run build:react",
"deploy": "gh-pages -d build",
"version:alpha": "npm version prerelease --preid alpha",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"gulp": "gulp",
"generate-svg-icon-files": "node ./scripts/generate-svg-icon-files.js"
},
"peerDependencies": {
"@blueprintjs/core": "^5.5.1",
"@blueprintjs/datetime": "^5.2.4",
"@blueprintjs/icons": "^5.2.1",
"@blueprintjs/select": "^5.0.16",
"@blueprintjs/table": "^5.0.16"
},
"peerDependenciesMeta": {
"@blueprintjs/datetime": {
"optional": true
},
"@blueprintjs/select": {
"optional": true
},
"@blueprintjs/table": {
"optional": true
}
},
"devDependencies": {
"@blueprintjs/core": "5.5.1",
"@blueprintjs/datetime": "5.2.4",
"@blueprintjs/docs-theme": "5.1.1",
"@blueprintjs/icons": "5.2.1",
"@blueprintjs/select": "5.0.16",
"@blueprintjs/table": "5.0.16",
"@carbon/colors": "^11.11.0",
"@ibm/plex": "^6.1.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"copyfiles": "^2.4.1",
"cssnano": "^5.1.14",
"gh-pages": "^4.0.0",
"gulp": "^4.0.2",
"gulp-cssbeautify": "^3.0.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"node-sass": "^8.0.0",
"node-sass-tilde-importer": "^1.0.2",
"postcss": "^8.4.21",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-custom-properties": "^12.1.11",
"postcss-remove-null": "^1.2.1",
"postcss-remove-root": "^0.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.2",
"react-scripts": "5.0.1",
"typescript": "^4.9.4",
"web-vitals": "^3.1.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}