-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "zebulon-grid",
"version": "2.0.11",
"homepage": "http://polluxparis.github.io/zebulon-grid",
"license": "MIT",
"description": "Pivot grid written in React",
"tags": [
"pivot table",
"pivot grid",
"grid",
"pivot",
"react",
"javascript"
],
"author": "Emile et Thomas Bres <[email protected]>",
"main": "lib/index.js",
"dependencies": {
"classnames": "^2.2.5",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"react-redux": "^5.0.7",
"reselect": "^3.0.1",
"zebulon-table": "^1.2.52"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"compile": "npm run compile:js &&npm run compile:css",
"compile:js": "rimraf lib && cross-env NODE_ENV=production babel src/pivotGrid -d lib --presets react-app --ignore test.js",
"compile:css": "rimraf lib/index.css && postcss --use autoprefixer --use cssnano -o lib/index.css src/pivotGrid/index.css"
},
"babel": {
"presets": [
"react-app"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"cross-env": "^5.1.5",
"gh-pages": "^1.2.0",
"postcss-cli": "^5.0.1",
"prettier": "1.16.4",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-resizable": "^1.7.5",
"react-scripts": "^2.1.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}