-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "datasette-nteract-data-explorer",
"version": "0.5.1",
"description": "Automatic data visualization in datasette",
"source": "frontend-src/main.tsx",
"main": "dist/index.js",
"targets": {
"main": false
},
"author": "Cameron Yick <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"os-browserify": "^0.3.0",
"parcel": "^2.4.0",
"process": "^0.11.10"
},
"browserslist": "> 0.5%, last 2 versions, not dead, not ios_saf < 13",
"scripts": {
"dev": "yarn parcel frontend-src/index.html --no-source-maps --dist-dir js-dist/",
"build": "yarn parcel build frontend-src/index.html --no-source-maps --dist-dir js-dist/ && yarn run export",
"export": "mkdir -p datasette_nteract_data_explorer/static && mv js-dist/*.js datasette_nteract_data_explorer/static",
"clean": "rm -rf js-dist/ && rm -rf datasette_nteract_data_explorer/static/* "
},
"dependencies": {
"@modulz/design-system": "^0.6.2",
"@nteract/data-explorer": "^8.2.12",
"@swc/helpers": "^0.3.8",
"jotai": "^1.7.8",
"localforage": "^1.10.0",
"preact": "^10.6.6",
"styled-components": "^5.3.5"
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat",
"react/jsx-runtime": "preact/jsx-runtime"
}
}