-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"name": "react-crux",
"version": "0.32.0",
"description": "Simple react based library to create components for basic and complex CRUD operations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/curefit/react-crux.git"
},
"author": "Ankit Gupta <ankit.gupta@curefit.com>",
"license": "MIT",
"dependencies": {
"autobind-decorator": "2.1.0",
"lodash": "^4.17.13",
"moment": "^2.22.2",
"moment-timezone": "^0.5.23",
"query-string": "^6.2.0",
"rc-time-picker": "^3.7.3",
"react-bootstrap": "^0.32.3",
"react-bootstrap-typeahead": "^3.2.2",
"react-color": "^2.17.0",
"react-datepicker": "^1.6.0",
"react-datetime": "^3.0.4",
"react-dropzone": "^5.0.1",
"react-json-view": "^1.19.1",
"react-redux": "^5.0.7",
"react-select": "^3.0.4",
"react-timezone": "^2.3.0",
"react-tooltip": "^4.2.21",
"reactcss": "^1.2.3",
"superagent": "^3.8.3"
},
"peerDependencies": {
"react": "16.14.0",
"react-dom": "16.14.0"
},
"bugs": {
"url": "https://github.com/curefit/react-crux/issues"
},
"homepage": "https://github.com/curefit/react-crux#readme",
"directories": {
"example": "examples"
},
"devDependencies": {
"@types/lodash": "^4.14.116",
"@types/moment-timezone": "^0.5.10",
"@types/node": "^10.9.3",
"@types/react": "^16.4.12",
"@types/react-bootstrap": "^0.32.13",
"@types/react-bootstrap-typeahead": "^3.2.1",
"@types/react-color": "^2.14.1",
"@types/react-datepicker": "^1.1.7",
"@types/react-dropzone": "^4.2.2",
"@types/react-redux": "^6.0.6",
"@types/react-select": "^3.0.4",
"@types/reactcss": "^1.2.3",
"@types/superagent": "^3.8.4",
"@types/uuid": "^3.4.5",
"barrelsby": "^1.0.2",
"typescript": "^4.7.4",
"webpack": "^4.28.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate-barrels": "rm -rf dist && barrelsby --delete -e node_modules/*",
"build": "tsc",
"watch": "tsc --project tsconfig.json -w",
"prepublishOnly": "rm -rf dist && tsc",
"postversion": "git push origin master && git push origin master --tags && npm publish",
"release-alpha": "npm run build && npm publish --tag alpha"
}
}