-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
{
"name": "react-retix",
"version": "0.2.0-beta.0",
"description": "The combination of React and RxJS, that makes state management easier.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md"
],
"scripts": {
"clean": "rimraf lib",
"retype": "npx -p typescript tsc lib/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"start": "concurrently --kill-others \"npm run copy.dev\" \"npm run serve\"",
"serve": "webpack-dev-server --mode development",
"build": "npm run copy && webpack --mode production",
"copy": "babel src --out-dir lib --extensions '.ts' && babel types -d lib --copy-files",
"copy.dev": "babel src --out-dir lib --extensions '.ts' --watch",
"deploy": "npm run build && gh-pages -d example/dist",
"prepublish": "npm run clean && npm run copy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vixnguyen/react-rx.git"
},
"keywords": [
"react",
"react+rx",
"rx",
"reactivex",
"state management",
"no redux"
],
"bugs": {
"url": "https://github.com/vixnguyen/react-rx/issues"
},
"homepage": "https://github.com/vixnguyen/react-rx#readme",
"peerDependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2"
},
"dependencies": {
"react-hook-form": "^7.20.5",
"rxjs": "^7.4.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-transform-async-to-generator": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.16.0",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.1",
"concurrently": "^6.3.0",
"css-loader": "^3.6.0",
"file-loader": "^6.2.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false,
"jsxSingleQuote": true,
"arrowParens": "avoid"
},
"author": "Vix Nguyen <[email protected]>",
"license": "ISC",
"directories": {
"example": "example",
"lib": "lib"
}
}