-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-volume-viewer",
"version": "1.2.1",
"description": "Aframe container with custom controls for use in react applications",
"author": "brown-ccv",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brown-ccv/react-volume-viewer.git"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "cross-env CI=1 react-scripts test --env=jsdom && run-s test:unit test:build",
"test:build": "run-s build",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm ci && npm run build",
"deploy": "gh-pages -d example/build",
"lint": "prettier --write src example/src"
},
"dependencies": {
"@reach/listbox": "^0.16.2",
"@reach/tabs": "^0.16.4",
"aframe": "^1.4.0",
"d3-scale": "^4.0.2",
"lodash": "^4.17.21",
"rc-slider": "^10.0.0"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-url": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^7.0.3",
"eslint-config-react-app": "^7.0.0",
"gh-pages": "^3.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-scripts": "^5.0.0",
"rollup": "^2.59.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-string": "^3.0.0",
"styled-components": "^5.0.0"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!d3|d3-array|@reach/listbox|@reach/tabs/styles.css|rc-slider|internmap|delaunator|robust-predicates)"
]
}
}