-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.11 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.11 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
{
"name": "@labkey/components",
"version": "7.23.0",
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
"sideEffects": false,
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.scss"
],
"main": "dist/components.js",
"module": "dist/components.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/components.js"
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
},
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production webpack --config package.config.js --color --progress --profile",
"build-analyze": "cross-env ANALYZE=true npm run build",
"clean": "rimraf dist",
"cleanAll": "rimraf dist && rimraf node_modules",
"prepublishOnly": "npm install --legacy-peer-deps && cross-env WEBPACK_STATS=errors-only npm run build",
"test": "cross-env NODE_ENV=test jest --maxWorkers=6",
"test-ci": "cross-env NODE_ENV=test jest --ci",
"test-to-file": "cross-env NODE_ENV=test jest -i --no-color 2>jest-log.txt",
"lint": "eslint",
"lint-fix": "eslint --fix",
"lint-precommit": "node lint.diff.mjs",
"lint-precommit-fix": "node lint.diff.mjs --fix",
"lint-branch": "node lint.diff.mjs --currentBranch",
"lint-branch-fix": "node lint.diff.mjs --currentBranch --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LabKey/labkey-ui-components.git"
},
"author": "LabKey",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://www.labkey.org/project/home/Developer/issues/begin.view?"
},
"publishConfig": {
"registry": "https://labkey.jfrog.io/artifactory/api/npm/libs-client"
},
"homepage": "https://github.com/LabKey/labkey-ui-components#readme",
"dependencies": {
"@hello-pangea/dnd": "18.0.1",
"@labkey/api": "1.49.0",
"@testing-library/dom": "~10.4.1",
"@testing-library/jest-dom": "~6.9.1",
"@testing-library/react": "~16.3.2",
"@testing-library/user-event": "~14.6.1",
"bootstrap": "~3.4.1",
"classnames": "~2.5.1",
"date-fns": "~3.6.0",
"date-fns-tz": "~3.2.0",
"font-awesome": "~4.7.0",
"immer": "~10.1.3",
"immutable": "~3.8.2",
"normalizr": "~3.6.2",
"numeral": "~2.0.6",
"react": "~18.3.1",
"react-color": "~2.19.3",
"react-datepicker": "~7.6.0",
"react-dom": "~18.3.1",
"react-router-dom": "~6.30.1",
"react-select": "~5.10.2",
"react-treebeard": "~3.2.4",
"vis-data": "~8.0.3",
"vis-network": "~10.0.2"
},
"devDependencies": {
"@labkey/build": "9.0.0",
"@labkey/eslint-config": "1.1.3",
"@types/history": "4.7.11",
"@types/jest": "30.0.0",
"@types/node": "24.10.9",
"@types/numeral": "2.0.5",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"blob-polyfill": "9.0.20240710",
"bootstrap-sass": "3.4.3",
"cross-env": "10.1.0",
"execa": "9.6.1",
"jest": "30.2.0",
"jest-cli": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-teamcity-reporter": "0.9.0",
"ts-jest": "29.4.6",
"webpack-merge": "6.0.1"
}
}