forked from TeselaGen/teselagen-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "teselagen-react-components",
"version": "30.3.6",
"description": "Teselagen React Component Library",
"main": "lib/index.js",
"types": "./index.d.ts",
"homepage": "http://teselagen.github.io/teselagen-react-components",
"module": "es/index.js",
"files": [
"es",
"lib",
"index.d.ts"
],
"scripts": {
"build": "nwb build-react-component --copy-files --no-demo",
"buildWithDemo": "nwb build-react-component --copy-files",
"//build-watch": "nodemon --watch src --exec \"rm .babelrc; yarn build\" ",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo --port 3333",
"prepublishOnly": "yarn build",
"postpublish": "yarn deploy",
"predeploy": "yarn buildWithDemo",
"deploy": "gh-pages -m 'auto commit [ci skip]' -d demo/dist",
"fontopen": "make fontopen",
"fontsave": "make fontsave",
"analyze-build": "ANALYZE_BUNDLE=1 yarn buildWithDemo && webpack-bundle-analyzer demo/dist/stats.json build",
"c": "yarn cypress open",
"test": "yarn cypress run",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"@blueprintjs/core": "^3.41.0",
"@blueprintjs/datetime": "^3.21.2",
"@blueprintjs/select": "^3.15.8",
"@teselagen/react-list": "^0.8.18",
"@teselagen/react-table": "^6.10.9",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"dayjs": "^1.10.4",
"dom-scroll-into-view": "^2.0.1",
"fuzzysearch": "^1.0.3",
"is-mobile": "^3.0.0",
"lodash": "^4.17.21",
"math-expression-evaluator": "^1.3.7",
"prop-types": "^15.6.2",
"qs": "^6.9.6",
"react-color": "^2.19.3",
"react-dropzone": "^4.2.12",
"react-rnd": "^10.2.4",
"react-router-dom": "^4.3.1",
"react-sortable-hoc": "^0.6.8",
"react-transition-group": "^2.4.0",
"recompose": "^0.30.0",
"redux-form": "^7.4.2",
"shortid": "^2.2.16",
"tg-client-query-builder": "^2.13.1",
"use-deep-compare-effect": "^1.6.1"
},
"devDependencies": {
"@types/lodash": "npm:@types/lodash-es",
"auto-changelog": "^2.2.1",
"chance": "^1.1.7",
"cypress": "3.2.0",
"eslint": "^6.8.0",
"eslint-config-teselagen": "^5.0.6",
"gh-pages": "^2.2.0",
"husky": "^1.1.3",
"lint-staged": "^9.2.3",
"nwb": "^0.24.5",
"prettier": "^1.16.4",
"raw-loader": "^0.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "^4.0.8",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-thunk": "*",
"stats-webpack-plugin": "^0.7.0",
"webpack-bundle-analyzer": "^3.7.0"
},
"resolutions": {
"listr": "0.14.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"cypress/**/*.js": [
"eslint --rule 'react/jsx-curly-brace-presence: 1' --fix --max-warnings=0",
"prettier --write",
"git add"
],
"src/**/*.js": [
"eslint --rule 'import/order: 1' --rule 'react/jsx-curly-brace-presence: 1' --fix --max-warnings=0",
"prettier --write",
"git add"
],
"*.css": [
"prettier --write",
"git add"
]
},
"license": "MIT",
"repository": "https://github.com/TeselaGen/teselagen-react-components",
"keywords": [
"react-component",
"teselagen",
"blueprintjs",
"multi-select",
"side-by-side",
"menu-bar",
"timeline",
"confirmation-dialog",
"resizable-dialog"
]
}