forked from plotly/react-pivottable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.38 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
{
"name": "@m3ter-com/react-pivottable",
"version": "0.13.0",
"description": "A M3ter fork of plotly's react-pivottable",
"main": "dist/PivotTableUI.js",
"types": "dist/PivotTableUI.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "webpack serve",
"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": "yarn run test:eslint && yarn run test:prettier && yarn run test:jest",
"clean": "rm -rf __tests__ dist",
"build": "yarn run clean && babel src/*.{js,jsx} --out-dir=./dist --source-maps && cp src/pivottable.css ./dist/pivottable.css && cp src/PivotTableUI.d.ts ./dist/PivotTableUI.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m3ter-com/react-pivottable.git"
},
"keywords": [
"react",
"pivottable"
],
"license": "MIT",
"homepage": "https://github.com/m3ter-com/react-pivottable#readme",
"dependencies": {
"immutability-helper": "^2.3.1",
"prop-types": "^15.5.10",
"react-draggable": "^3.0.3",
"react-sortablejs": "^1.3.4",
"sortablejs": "^1.15.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.3.0",
"jest": "^29.3.1",
"papaparse": "^5.3.2",
"prettier": "^1.8.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^4.2.1",
"react-plotly.js": "^2.0.0",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}