-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.35 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
{
"name": "hypocube",
"version": "0.1.0",
"description": "",
"repository": {
"url": "https://github.com/CAYdenberg/hypocube"
},
"main": "dist/hypocube.umd.js",
"module": "dist/hypocube.es.js",
"types": "build/types/index.d.ts",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint src sandbox website/src --ext .ts,.tsx,.js,.jsx --max-warnings=0",
"test": "jest --env=jsdom",
"test:update": "jest --env=jsdom -u",
"chk": "npm run typecheck && npm run lint && npm run test",
"build": "tsc --project tsconfig.build.json && vite --config vite.ts build",
"preversion": "npm run typecheck && npm run lint && npm run test && npm run build",
"sandbox": "vite --config vite.ts",
"autofix": "eslint src sandbox website/src --ext .ts,.tsx,.js,.jsx --fix --max-warnings=0"
},
"author": "@CAYdenberg",
"license": "MIT",
"dependencies": {
"@use-gesture/react": "^10.1.6",
"color-interpolate": "^1.0.5",
"d3-delaunay": "^5.3.0",
"d3-ease": "^2.0.0",
"d3-scale": "^3.2.3",
"d3-shape": "^2.0.0",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@emotion/react": "^11.4.0",
"@types/d3-delaunay": "^5.3.0",
"@types/d3-ease": "^2.0.0",
"@types/d3-scale": "^3.2.2",
"@types/d3-shape": "^2.0.0",
"@types/jest": "^27.4.0",
"@types/lodash.debounce": "^4.0.6",
"@types/luxon": "^2.0.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"luxon": "^2.0.2",
"prettier": "^1.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^27.1.3",
"typescript": "~4.4.0",
"vite": "^3.0.9"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"jest": {
"clearMocks": true
}
}