generated from voxgig/model-vue
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 3.36 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
82
83
84
85
86
87
88
89
90
91
{
"name": "@voxgig/model-react",
"version": "2.5.0",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/voxgig-model-react.umd.js",
"module": "./dist/voxgig-model-react.es.js",
"types": "./dist/voxgig-model-react.d.ts",
"exports": {
".": {
"import": "./dist/voxgig-model-react.es.js",
"require": "./dist/voxgig-model-react.umd.js"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"watch": "tsc && vite build -w",
"preview": "vite preview",
"vitest": "vitest",
"build-test-plain": "tsc --project tsconfig-test-plain.json",
"watch-test-plain": "tsc --project tsconfig-test-plain.json -w",
"test": "echo test",
"test-plain": "node --enable-source-maps --experimental-test-coverage --test test-plain",
"test-some-plain": "node --enable-source-maps --experimental-test-coverage --test-name-pattern=\"$npm_config_pattern\" --test test-plain",
"clean": "rm -rf dist node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm install && npm run build && npm run test",
"repo-check": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && [[ '' == `git tag --list v${REPO_VERSION}` ]]",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run repo-check && npm run clean && npm install --registry https://registry.npmjs.org && npm run build && npm test && npm run repo-tag && npm publish --registry https://registry.npmjs.org",
"repo-publish-quick": "npm run repo-check && npm run build && npm run repo-tag && npm publish --registry https://registry.npmjs.org --access=public",
"lint": "prettier-standard --lint",
"format": "prettier-standard --format"
},
"peerDependencies": {
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"@fontsource/roboto": ">=5",
"@jsonic/jsonic-next": ">=2",
"@mdi/js": ">=7",
"@mdi/react": ">=1",
"@mui/icons-material": ">=5",
"@mui/material": ">=5",
"@mui/x-data-grid": ">=7",
"@reduxjs/toolkit": ">=2",
"@types/dinero.js": ">=1",
"dinero.js": ">=1",
"gubu": ">=8",
"gubu-errmsg": ">=0",
"material-react-table": ">=2",
"patrun": ">=7",
"react": ">=18",
"react-dom": ">=18",
"react-hook-form": ">=7",
"react-redux": ">=9",
"react-router-dom": ">=6",
"redux": ">=5.0.1",
"redux-thunk": ">=3",
"seneca-entity": ">=28",
"@seneca/browser-store": ">=0",
"@seneca/redux": ">=0",
"styled-components": ">=6"
},
"devDependencies": {
"@babel/core": "7.24.9",
"@hapi/code": "^9.0.3",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.1",
"acorn-jsx": "^5.3.2",
"babel-loader": "^9.1.3",
"jsdom": "^24.1.0",
"prettier-standard": "^16.4.1",
"redux-mock-store": "^1.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.0.3"
}
}