-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.93 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.93 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
{
"name": "nbsv",
"version": "0.1.7",
"description": "Simularium Viewer Jupyter Widget ",
"keywords": [
"jupyter",
"jupyterlab",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/simularium/nbsv",
"bugs": {
"url": "https://github.com/simularium/nbsv/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Megan Riel-Mehan",
"email": "meganr@alleninstitute.org"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/simularium/nbsv"
},
"scripts": {
"build": "esbuild src/widget.tsx --bundle --minify --format=esm --outdir=./nbsv/static",
"clean": "rimraf nbsv/static",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"test": "yarn jest --runInBand",
"watch": "yarn run build --sourcemap=inline --watch"
},
"dependencies": {
"@aics/simularium-viewer": "^3.9.1",
"@anywidget/react": "^0.0.8",
"@jupyter-widgets/base": "^6.0.10",
"antd": "^5.22.1",
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^11.0.4"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.5.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"babel-plugin-transform-import-meta": "^2.2.0",
"esbuild": "0.24.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.0.5",
"rimraf": "^2.6.2",
"ts-jest": "^29.1.0",
"typescript": "^5.6.3"
}
}