forked from hjc0826/react-pivottable-secondary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.08 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
{
"name": "react-pivottable-secondary",
"version": "0.0.14",
"description": "A React-based pivot table secondary",
"main": "PivotTableUI.js",
"files": [
"PivotTable.js",
"PivotTableUI.js",
"PlotlyRenderers.js",
"TableRenderers.js",
"Utilities.js",
"PivotTable.js.map",
"PivotTableUI.js.map",
"PlotlyRenderers.js.map",
"TableRenderers.js.map",
"Utilities.js.map",
"pivottable.css"
],
"scripts": {
"start": "webpack-dev-server",
"test:eslint": "eslint src/*.js* && echo 'eslint: \\033[0;32m'PASS'\\033[0m'",
"test:eslint:fix": "eslint src/*.js* --fix",
"test:prettier": "prettier -l \"src/*.js*\" && echo 'prettier: \\033[0;32m'PASS'\\033[0m'",
"test:prettier:fix": "prettier --write \"src/*.js*\"",
"test:jest": "jest",
"test": "npm run test:eslint && npm run test:prettier && npm run test:jest",
"clean": "rm -rf __tests__ PivotTable.js* PivotTableUI.js* PlotlyRenderers.js* TableRenderers.js* Utilities.js* pivottable.css",
"build": "npm run clean && cp src/pivottable.css . && babel src --out-dir=. --source-maps --presets=env,react --plugins babel-plugin-add-module-exports",
"doPublish": "npm run build && npm publish",
"postpublish": "npm run clean",
"deploy": "webpack -p && mv bundle.js examples && cd examples && git init && git add . && git commit -m build && git push --force git@github.com:plotly/react-pivottable.git master:gh-pages && rm -rf .git bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hjc0826/react-pivottable-secondary"
},
"keywords": [
"react",
"pivottable"
],
"author": "099",
"license": "MIT",
"bugs": {
"url": "https://github.com/hjc0826/react-pivottable-secondary/issues"
},
"homepage": "https://github.com/hjc0826/react-pivottable-secondary/blob/main/README.md",
"dependencies": {
"datatables.net-bs": "^1.12.1",
"datatables.net-fixedcolumns-bs": "^4.1.0",
"datatables.net-fixedheader-bs": "^3.2.4",
"datatables.net-scroller-bs": "^2.0.7",
"immutability-helper": "^2.3.1",
"jquery": "^3.6.0",
"prop-types": "^15.5.10",
"react-draggable": "^3.0.3",
"react-load-script": "0.0.6",
"react-sortablejs": "^1.3.4",
"sortablejs": "^1.6.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/jquery": "^3.5.14",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.3.0",
"jest": "^21.2.1",
"lodash": "^4.17.21",
"papaparse": "^4.3.6",
"prettier": "^1.8.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-dropzone": "^4.2.1",
"react-hot-loader": "^3.1.1",
"react-plotly.js": "^2.0.0",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}