-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.28 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@orfium/toolbox",
"version": "0.0.0",
"type": "module",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/src/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/src/index.d.ts",
"default": "./dist/index.umd.cjs"
},
"default": "./dist/index.umd.cjs"
}
},
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.5.0",
"@auth0/auth0-spa-js": "^2.1.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@orfium/ictinus": "5.8.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"axios": "^1.6.7",
"axios-mock-adapter": "^1.22.0",
"dayjs": "^1.11.10",
"jwt-decode": "^3.1.2",
"polished": "^4.2.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-error-boundary": "^3.1.4",
"react-router-dom": "^5.3.1",
"semantic-release": "^24.0.0",
"zustand": "4.5.4"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@sentry/browser": "7.21.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.3.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jwt-encode": "^1.0.0",
"@types/react": "^17.0.44",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^24.1.0",
"jwt-encode": "^1.0.1",
"lint-staged": "^15.2.7",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^3.0.2",
"ts-lib": "^0.0.5",
"tslib": "^2.3.1",
"typedoc": "^0.25.12",
"typescript": "^5.3.3",
"vite": "^5.3.4",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@orfium/ictinus": "^5.0.0",
"@sentry/browser": "^7.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"documentation": "cd documentation && yarn start",
"documentation:build": "cd documentation && yarn install && yarn build",
"build": "vite build",
"yalc:push": "yalc publish --push",
"watch": "yarn build --mode=watch",
"lint": "eslint './src/**/*.{ts,tsx}'",
"test": "vitest run",
"test:watch": "node --experimental-vm-modules ./node_modules/.bin/jest --watch",
"documentation:generate": "typedoc --out typeDocs src",
"documentation:up": "cd documentation && yarn start"
},
"keywords": [
"Orfium",
"typescript",
"react",
"tooling",
"tools",
"toolbox"
]
}