forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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": "@deephaven/grid",
"version": "0.4.0",
"description": "Deephaven React grid component",
"author": "Deephaven Data Labs LLC",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/deephaven/web-client-ui"
},
"main": "dist/index.js",
"module": "dist/index.modern",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "cross-env NODE_ENV=production run-s clean build-steps",
"build-dev": "cross-env NODE_ENV=development run-s clean build-steps",
"build-steps": "run-p build:*",
"babel": "babel ./src --out-dir ./dist --extensions \".ts,.tsx,.js,.jsx\" --source-maps --root-mode upward",
"sass": "sass ./src:./dist",
"types": "tsc",
"build:babel": "npm run babel",
"build:sass": "npm run sass",
"build:types": "npm run types -- --incremental",
"watch": "run-p watch:*",
"watch:babel": "npm run babel -- -w --skip-initial-build",
"watch:sass": "npm run sass -- --watch --update",
"watch:types": "npm run types -- -w --incremental --preserveWatchOutput",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"prestart": "npm run build-dev",
"start": "cross-env NODE_ENV=development npm run watch",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@deephaven/tsconfig": "^0.4.0",
"@types/lodash.clamp": "^4.0.6",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.14.8",
"cross-env": "^7.0.2",
"gh-pages": "^2.2.0",
"identity-obj-proxy": "^3.0.0",
"npm-run-all": "^4.1.5",
"react": "^16.14.0",
"rimraf": "^3.0.2",
"sass": "1.32.13",
"ts-loader": "^8.3.0",
"typescript": "^4.3.2"
},
"files": [
"dist"
],
"dependencies": {
"classnames": "^2.3.1",
"color-convert": "^2.0.1",
"event-target-shim": "^6.0.2",
"lodash.clamp": "^4.0.3",
"memoize-one": "^5.1.1",
"memoizee": "^0.4.15",
"prop-types": "^15.7.2"
},
"publishConfig": {
"access": "public"
}
}