forked from plotly/react-chart-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.03 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
{
"name": "react-chart-editor",
"description": "plotly.js chart editor react component UI",
"version": "0.16.2",
"author": "Plotly, Inc.",
"bugs": {
"url": "https://github.com/plotly/react-chart-editor/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"draft-js": "^0.10.4",
"draft-js-export-html": "github:plotly/draft-js-export-html",
"draft-js-import-html": "^1.2.1",
"draft-js-utils": "^1.2.0",
"fast-isnumeric": "^1.1.1",
"immutability-helper": "^2.6.4",
"plotly-icons": "latest",
"plotly.js": "1.37.1",
"prop-types": "^15.5.10",
"raf": "^3.4.0",
"react-color": "^2.13.8",
"react-colorscales": "^0.4.2",
"react-dropzone": "^4.2.9",
"react-plotly.js": "^2.0.0",
"react-rangeslider": "^2.2.0",
"react-select": "^1.2.0",
"react-tabs": "^2.2.1",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-traverse": "^6.26.0",
"canvas": "^1.6.9",
"css-loader": "^0.28.9",
"cssnano": "^3.10.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^4.12.1",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.4.0",
"fs": "^0.0.1-security",
"gl": "^4.0.4",
"glob": "^7.1.2",
"jest": "^21.2.1",
"jest-cli": "^22.0.4",
"mkdirp": "^0.5.1",
"node-sass": "^4.7.2",
"postcss": "^6.0.14",
"postcss-combine-duplicated-selectors": "^3.1.4",
"postcss-custom-properties": "^6.2.0",
"postcss-remove-root": "^0.0.2",
"prettier": "^1.9.2",
"react": "^16.0.0",
"react-ace": "^5.9.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^4.0.0-beta.21",
"react-inspector": "^2.2.2",
"react-test-renderer": "^16.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"peerDependencies": {
"react": ">15",
"react-dom": ">15"
},
"homepage": "https://plotly.github.io/react-chart-editor/",
"jest": {
"roots": [
"<rootDir>/src/"
],
"moduleNameMapper": {
"^.+\\.css$": "<rootDir>/config/CSSStub.js"
}
},
"keywords": [
"chart",
"data",
"editor",
"graphing",
"plotly",
"plotting",
"react",
"visualization",
"widgets"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/plotly/react-chart-editor.git"
},
"scripts": {
"lint": "prettier --write \"src/**/*.js\"",
"make:arrows": "node scripts/makeArrows.js",
"make:combined-translation-keys": "npm run make:translation-keys && node scripts/combineTranslationKeys.js",
"make:lib": "mkdirp lib && npm run make:lib:js && npm run make:lib:css && npm run make:combined-translation-keys",
"make:lib:css": "mkdirp lib && babel-node scripts/styles.js && SASS_ENV=ie babel-node scripts/styles.js && babel-node scripts/postcss.js && SASS_ENV=ie babel-node scripts/postcss.js",
"make:lib:js": "mkdirp lib && babel src --out-dir lib --ignore=__tests__/* --source-maps",
"make:translation-keys": "node scripts/findTranslationKeys.js",
"prepublishOnly": "npm run make:lib",
"start": "webpack-dev-server --hot",
"test": "npm run test:lint && npm run test:pretty && npm run test:js",
"test:js": "jest --setupTestFrameworkScriptFile=raf/polyfill",
"test:lint": "eslint \"src/**/*.js\" && echo -e '\\033[0;32m'PASS'\\033[0m'",
"test:pretty": "prettier -l \"src/**/*.js\" && echo -e '\\033[0;32m'PASS'\\033[0m'",
"watch": "babel src --watch --out-dir lib --source-maps | node-sass -w src/styles/main.scss lib/react-chart-editor.css",
"watch-test": "jest --watch"
}
}