forked from GriddleGriddle/Griddle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.21 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
{
"name": "griddle-react",
"version": "1.3.0",
"description": "A fast and flexible grid component for React",
"keywords": [
"react-component",
"grid",
"react",
"pagination",
"sort"
],
"main": "dist/module/module.js",
"types": "dist/module/module.d.ts",
"scripts": {
"start": "start-storybook -p 6006",
"test": "ava",
"watch-test": "ava --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "npm run clean-dist && npm run build-modules && npm run build-umd && npm run build-ts",
"clean-dist": "rimraf dist",
"build-ts": "cp src/module.d.ts dist/module/",
"build-umd": "webpack --config webpack.config.js",
"build-modules": "cross-env BABEL_ENV=build babel src --out-dir dist/module ",
"ship-it": "npm run build && npm publish --tag next"
},
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"@kadira/storybook": "^2.5.2",
"@types/react": "^15.0.17",
"ava": "^0.17.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.0.0",
"babel-register": "^6.9.0",
"cross-env": "^3.2.4",
"enzyme": "^2.7.1",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.6.0",
"jsdom": "^9.10.0",
"jsdom-global": "^2.1.1",
"lodash-webpack-plugin": "^0.11.0",
"node-libs-browser": "^2.0.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.3.2",
"rimraf": "^2.6.0",
"ts-loader": "^2.0.2",
"typescript": "^2.2.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"max-safe-integer": "^1.0.0",
"react-redux": "^5.0.2",
"recompose": "^0.21.2",
"redux": "^3.5.2",
"reselect": "^2.5.3"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"author": "Ryan Lanciaux & Joel Lanciaux",
"license": "MIT"
}