-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
136 lines (136 loc) · 3.9 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "teselagen-react-components",
"version": "30.15.8",
"description": "Teselagen React Component Library",
"main": "lib/index.js",
"types": "./index.d.ts",
"module": "es/index.js",
"exports": {
"import": "./es/index.js",
"require": "./lib/index.js"
},
"files": [
"es",
"lib",
"index.d.ts"
],
"scripts": {
"VITE_start": "vite --open --port 3333",
"VITE_build": "vite build",
"VITE_buildWithDemo": "vite build -c vite.config.demo.js",
"start": "nwb serve-react-demo --port 3333",
"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",
"analyze-build": "ANALYZE_BUNDLE=1 yarn buildWithDemo && webpack-bundle-analyzer demo/dist/stats.json build",
"c": "yarn cypress open --e2e --browser chrome",
"test": "yarn cypress run",
"changelog": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"@blueprintjs/core": "3.52.0",
"@blueprintjs/datetime": "3.23.19",
"@blueprintjs/select": "3.18.11",
"@teselagen/bounce-loader": "^0.0.6",
"@teselagen/file-utils": "^0.2.15",
"@teselagen/react-list": "^0.8.18",
"@teselagen/react-table": "^6.10.11",
"@vitejs/plugin-react": "^4.0.0",
"axios": "^0.21.1",
"browser-or-node": "^2.0.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"dayjs": "^1.10.4",
"dom-scroll-into-view": "^2.0.1",
"downloadjs": "^1.4.7",
"fuse.js": "^6.6.2",
"fuzzysearch": "^1.0.3",
"immer": "^9.0.15",
"is-mobile": "^3.0.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"math-expression-evaluator": "^1.3.7",
"mobx": "^6.9.0",
"mobx-react": "^7.6.0",
"nanoid": "^4.0.0",
"papaparse": "^5.3.2",
"prop-types": "^15.6.2",
"qs": "^6.9.6",
"react-color": "^2.19.3",
"react-dropzone": "^11.4.2",
"react-markdown": "8.0.7",
"react-rnd": "^10.2.4",
"react-router-dom": "^4.3.1",
"react-sortable-hoc": "^0.6.8",
"react-transition-group": "^2.4.0",
"recompose": "npm:react-recompose@0.31.1",
"redux-form": "^8.3.10",
"remark-gfm": "^3.0.1",
"tg-client-query-builder": "^2.14.2",
"tippy.js": "^6.3.7",
"url-join": "^4.0.1",
"use-deep-compare-effect": "^1.6.1",
"vite": "^4.3.9",
"write-excel-file": "^1.4.25"
},
"devDependencies": {
"@types/lodash": "npm:@types/lodash-es",
"auto-changelog": "^2.2.1",
"chance": "^1.1.7",
"cypress": "12.12.0",
"eslint-config-teselagen": "^6.0.16",
"eslint-plugin-react-refresh": "^0.4.1",
"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": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"redux": "^4.1.2",
"redux-thunk": "2.4.1",
"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|nwb.config.js": [
"eslint --rule 'react/jsx-curly-brace-presence: 1' --fix --max-warnings=0",
"prettier --write",
"git add"
],
"src/**/*.js": [
"eslint --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",
"homepage": "https://github.com/TeselaGen/teselagen-react-components",
"keywords": [
"react-component",
"teselagen",
"blueprintjs",
"multi-select",
"side-by-side",
"menu-bar",
"timeline",
"confirmation-dialog",
"resizable-dialog"
]
}