-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
{
"name": "@speleotica/cave-survey-data-entry",
"version": "0.0.0-development",
"private": true,
"scripts": {
"dev": "rsbuild dev --open",
"deploy": "pnpm tc build && gh-pages -d dist -t true",
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"@emotion/cache": "latest",
"@emotion/css": "^11.11.2",
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@jcoreio/zod-forms": "^1.1.2",
"@mui/icons-material": "^5.15.18",
"@mui/material": "latest",
"@mui/material-nextjs": "latest",
"@speleotica/compass": "^5.1.2",
"@speleotica/frcsdata": "^4.3.0",
"@speleotica/unitized": "^2.0.0",
"@speleotica/walls": "^1.3.2",
"@tanstack/react-query": "^5.52.1",
"idb": "^8.0.0",
"lodash": "^4.17.21",
"react": "latest",
"react-dom": "latest",
"simple-homography": "^1.0.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "^4.12.4",
"@jcoreio/toolchain-circle": "^4.12.4",
"@jcoreio/toolchain-esnext": "^4.12.4",
"@jcoreio/toolchain-react": "^4.12.4",
"@jcoreio/toolchain-typescript": "^4.12.4",
"@rsbuild/core": "1.0.1-beta.16",
"@rsbuild/plugin-react": "1.0.1-beta.16",
"@types/lodash": "^4.17.4",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^6.1.1",
"typescript": "latest"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"@jcoreio/toolchain": {
"migratedVersion": "4.12.4"
}
}