-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "model-react",
"version": "3.0.3",
"description": "A system to create data models to be used with react hooks",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*.{js,d.ts}"
],
"scripts": {
"start": "tsc -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TarVK/model-react.git"
},
"keywords": [
"React",
"model",
"view"
],
"author": "Tar van Krieken",
"license": "MIT",
"bugs": {
"url": "https://github.com/TarVK/model-react/issues"
},
"homepage": "https://github.com/TarVK/model-react#readme",
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"react-dom": "^16.8.6",
"react": "^16.8.6",
"ts-loader": "^6.0.2",
"typescript": "^3.5.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.0"
}
}