-
Notifications
You must be signed in to change notification settings - Fork 379
/
Copy pathpackage.json
115 lines (115 loc) · 3.48 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
{
"name": "griddle-react",
"version": "1.14.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",
"check-ts": "tsc --version && tsc --strict src/module.d.ts",
"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-examples": "webpack --config .storybook/webpack-build.config.js",
"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 ",
"postpublish": "git push --tags",
"prepare": "npm run build",
"preversion": "npm test",
"ship-it": "npm publish --tag next"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@storybook/addon-info": "^4.1.13",
"@storybook/react": "^4.1.13",
"@types/jest": "^24.0.6",
"@types/node": "^11.9.5",
"@types/prop-types": "15.5.9",
"@types/react": "^16.8.4",
"@types/react-redux": "^5.0.21",
"@types/recompose": "^0.30.4",
"@types/storybook__react": "^4.0.1",
"ava": "^1.2.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"core-js": "^2.6.5",
"cross-env": "^5.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.1.0",
"jsdom": "^13.2.0",
"jsdom-global": "^3.0.2",
"lodash-webpack-plugin": "^0.11.5",
"node-libs-browser": "^2.2.0",
"react": "^16.8.3",
"react-docgen-typescript-loader": "^3.0.1",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.8.3",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3333",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
},
"dependencies": {
"immutable": "^3.8.2",
"lodash.assignin": "^4.2.0",
"lodash.compact": "^3.0.1",
"lodash.flatten": "^4.4.0",
"lodash.flattendeep": "^4.4.0",
"lodash.flow": "^3.5.0",
"lodash.flowright": "^3.5.0",
"lodash.forin": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isfinite": "^3.3.2",
"lodash.isstring": "^4.0.1",
"lodash.merge": "^4.6.1",
"lodash.pick": "^4.4.0",
"lodash.pickby": "^4.6.0",
"lodash.range": "^3.2.0",
"lodash.union": "^4.6.0",
"lodash.uniq": "^4.5.0",
"max-safe-integer": "^2.0.0",
"prop-types": "^15.7.2",
"react-redux": "^5.1.1",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"reselect": "^4.0.0"
},
"ava": {
"require": [
"@babel/register",
"./test/helpers/setupTest.js"
]
},
"author": "Ryan Lanciaux & Joel Lanciaux",
"license": "MIT"
}