-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"name": "@tylertech/forge-react",
"version": "3.1.0",
"description": "The official Tyler Forge™ components adapter library for React.",
"repository": "tyler-technologies-oss/forge-react",
"author": "Tyler Technologies, Inc.",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"prestart": "npm run build",
"start": "vite",
"build:demo": "vite build",
"serve:demo": "vite preview",
"clean": "rimraf dist/",
"prebuild": "npm run clean",
"build": "tsc --project lib/tsconfig-build.json",
"lint": "eslint --ext .ts,.tsx ./lib",
"release": "auto shipit"
},
"dependencies": {
"reactify-wc": "^4.0.0",
"tslib": "^2.3.2"
},
"peerDependencies": {
"@tylertech/forge": "^3.5.0",
"react": ">=17.0.0"
},
"devDependencies": {
"@auto-it/conventional-commits": "^11.1.6",
"@auto-it/first-time-contributor": "^11.1.6",
"@auto-it/npm": "^11.1.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tylertech-eslint/eslint-plugin": "^1.0.12",
"@tylertech/forge": "^3.5.0",
"@types/node": "^20.12.12",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.2.1",
"auto": "^11.1.6",
"commitlint": "^19.3.0",
"husky": "^9.0.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-overlay": "^6.0.11",
"react-router-dom": "^5.2.1",
"rimraf": "^5.0.7",
"sass": "^1.77.1",
"typescript": "~5.4.5",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2"
},
"overrides": {
"reactify-wc": {
"react": "$react",
"react-dom": "$react-dom"
},
"@tylertech/forge-build-tools": {
"typescript": "$typescript"
}
}
}