-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.79 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
{
"name": "@contextualize/contextualize-visualize",
"version": "1.0.0",
"description": "A client-side and server-side compatible visualization for Contextualize, LLC. and its products.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js,ts"
}
},
"scripts": {
"rollup": "rollup -c",
"test": "jest --passWithNoTests",
"storybook-serve": "start-storybook -p 6006",
"storybook-build": "build-storybook -o public"
},
"author": "Contextualize, LLC.",
"license": "ISC",
"peerDependencies": {
"d3": "^7.0.3",
"three": "^0.133.1"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/html": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@types/d3": "^7.0.0",
"@types/jest": "^28.1.4",
"@types/three": "^0.133.0",
"babel-jest": "^28.1.2",
"babel-loader": "^8.2.5",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"prettier": "2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
}
}