-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
88 lines (88 loc) · 2.41 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
{
"name": "react-stonecutter",
"version": "0.3.10",
"description": "Animated grid layout component for React",
"keywords": [
"react",
"react-component",
"grid"
],
"main": "lib/react-stonecutter.js",
"scripts": {
"start": "gulp",
"gh-pages": "gulp gh-pages",
"lint": "gulp lint",
"prettify": "prettier --write \"{src,test}/**/*.{js,json}\"",
"test": "mocha -R spec --require @babel/register test/*.jsx"
},
"husky": {
"hooks": {
"pre-commit": "gulp lint",
"pre-push": "npm test"
}
},
"author": "Dan Train",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dantrain/react-stonecutter.git"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"browser-sync": "^2.23.1",
"chai": "^4.1.1",
"chai-enzyme": "1.0.0-beta.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"gulp": "^3.9.1",
"gulp-eslint": "^5.0.0",
"gulp-filter": "^5.0.1",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.7.0",
"gulp-util": "^3.0.8",
"husky": "^2.2.0",
"lodash.assign": "^4.2.0",
"lodash.camelcase": "^4.3.0",
"lodash.isequalwith": "^4.4.0",
"lodash.shuffle": "^4.2.0",
"mocha": "^6.1.4",
"node-notifier": "^5.1.2",
"prettier": "^1.17.0",
"rc-slider": "^8.5.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-radio-group": "^3.0.2",
"react-test-renderer": "^16.0.0",
"run-sequence": "^2.1.0",
"webpack": "^4.30.0",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"enquire.js": "^2.1.1",
"imagesloaded": "^4.1.3",
"lodash.debounce": "^4.0.8",
"lodash.omit": "^4.5.0",
"lodash.partition": "^4.6.0",
"prop-types": "^15.5.10",
"react-motion": "^0.5.0",
"react-transition-group-plus": "^0.5.0-alpha.1",
"shallowequal": "^1.0.2"
},
"peerDependencies": {
"react": "^15.3.2 || ^16.0.0",
"react-dom": "^15.3.2 || ^16.0.0"
}
}