-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 KB
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
{
"name": "@thinking-home/ui",
"version": "0.1.15",
"private": false,
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"moo": "bin/moo"
},
"scripts": {
"build:lib": "webpack",
"build:tools": "tsc --declaration --outDir dist",
"build": "rm -rf dist && npm run build:lib && npm run build:tools",
"prepublishOnly": "npm run build",
"go": "git add . && git commit -m \"tmp\" && npm version patch && npm publish"
},
"license": "MIT",
"peerDependencies": {
"@thinking-home/i18n": "^0.4.0",
"history": "^5.3.0",
"io-ts": "^2.2.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.26.1",
"react-router-dom": "^6.26.1",
"webpack": "^5.94.0"
},
"devDependencies": {
"@thinking-home/i18n": "^0.4.0",
"@types/minimist": "^1.2.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"history": "^5.3.0",
"io-ts": "^2.2.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.26.1",
"react-router-dom": "^6.26.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"css-loader": "^7.1.2",
"minimist": "^1.2.8",
"react-toastify": "^10.0.5",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1"
}
}