forked from zakodium-oss/react-science
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.28 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.28 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "react-science",
"version": "0.20.1",
"description": "React components to build analysis UI",
"exports": {
"./app": {
"types": "./lib-esm/app/index.d.ts",
"require": "./lib/app/index.js",
"default": "./lib-esm/app/index.js"
},
"./app-data": {
"types": "./lib-esm/app-data/index.d.ts",
"require": "./lib/app-data/index.js",
"default": "./lib-esm/app-data/index.js"
},
"./ui": {
"types": "./lib-esm/components/index.d.ts",
"require": "./lib/components/index.js",
"default": "./lib-esm/components/index.js"
}
},
"files": [
"lib",
"lib-esm",
"src"
],
"scripts": {
"build": "npm run clean && npm run build-ts && npm run fix-react-shadow",
"build-all": "npm run build-app && npm run build-stories && mv build dist/stories",
"build-app": "cross-env NO_MINIFY=true vite build",
"build-stories": "ladle build",
"build-ts": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"createData": "npm run prepack && node scripts/createData",
"dev": "echo Use npm run dev-app or npm run dev-stories && exit 1",
"dev-stories": "ladle serve",
"dev-app": "vite --open /pages/demo.html",
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"fix-react-shadow": "node scripts/fix-react-shadow.mjs",
"playwright": "npm run playwright-ct -- --project chromium && npm run playwright-e2e -- --project chromium",
"playwright-ct": "playwright test -c playwright-ct.config.ts",
"playwright-e2e": "playwright test -c playwright-e2e.config.ts",
"prepack": "npm run build",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"serve": "vite preview",
"test": "npm run playwright && npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "vitest run --coverage "
},
"volta": {
"node": "18.14.2"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@headlessui/react": "^1.7.13",
"@lukeed/uuid": "^2.0.0",
"@popperjs/core": "^2.11.6",
"@tanstack/react-query": "^4.24.10",
"@tanstack/react-table": "^8.7.9",
"biologic-converter": "^0.6.0",
"cheminfo-types": "^1.4.0",
"d3-scale-chromatic": "^3.0.0",
"filelist-utils": "^1.8.0",
"immer": "^9.0.19",
"jcampconverter": "^9.0.7",
"lodash": "^4.17.21",
"ml-gsd": "^12.1.2",
"ml-peak-shape-generator": "^4.1.2",
"ml-signal-processing": "^1.0.2",
"ml-spectra-processing": "^12.0.0",
"ms-spectrum": "^2.2.0",
"netcdfjs": "^2.0.2",
"react-d3-utils": "^1.0.0",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.8.0",
"react-inspector": "^6.0.1",
"react-kbs": "^2.1.1",
"react-plot": "^1.4.2",
"react-popper": "^2.3.0",
"react-shadow": "^20.0.0",
"spc-parser": "^0.7.1",
"tinycolor2": "^1.6.0",
"use-resize-observer": "^9.1.0",
"wdf-parser": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@ladle/react": "^2.9.0",
"@playwright/experimental-ct-react": "^1.31.2",
"@playwright/test": "^1.31.2",
"@types/babel__core": "^7.20.0",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-inspector": "^4.0.2",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.2",
"cheminfo-font": "^1.9.0",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-config-zakodium": "^7.0.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ocl": "^5.0.0",
"rimraf": "^4.3.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium-oss/react-science.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium-oss/react-science/issues"
},
"homepage": "https://github.com/zakodium-oss/react-science#readme"
}