forked from curefit/react-crux
-
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.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 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": "react-crux",
"version": "0.0.25",
"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.10",
"moment": "^2.22.2",
"react": "^16.4.2",
"react-bootstrap": "^0.32.3",
"react-bootstrap-typeahead": "^3.2.2",
"react-datepicker": "^1.6.0",
"react-dropzone": "^5.0.1",
"react-redux": "^5.0.7",
"superagent": "^3.8.3"
},
"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/node": "^10.9.3",
"@types/react": "^16.4.12",
"@types/react-bootstrap": "^0.32.13",
"@types/react-bootstrap-typeahead": "^3.2.1",
"@types/react-datepicker": "^1.1.7",
"@types/react-redux": "^6.0.6",
"@types/superagent": "^3.8.4",
"barrelsby": "^1.0.2",
"typescript": "^3.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate-barrels": "rm -rf dist && barrelsby --delete -e node_modules/*",
"build": "tsc",
"prepublish": "rm -rf dist && tsc",
"postversion": "git push origin master && git push origin master --tags && npm publish"
}
}