-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.04 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
{
"name": "gifpicker",
"version": "1.1.2",
"description": "Easy to implement gifpicker field with searchsuggestions using the Tenor api.",
"main": "dist/index.js",
"homepage": "https://github.com/verhulstd/gifpicker",
"scripts": {
"start": "parcel watch lib/index.js",
"prebuild": "rm -r ./dist",
"build": "parcel build lib/index.js --global gifpicker",
"build:css": "parcel build lib/css/style.scss --public-url ./",
"start-demo": "parcel example/src/index.html --open",
"prebuild-demo": "rm -r ./example/dist",
"build-demo": "parcel build example/src/index.html --out-dir example/dist --public-url ./",
"codecov": "codecov --token=7d90a47e-7c02-496e-99a2-d69d452a6eb6",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"view-source-map": "source-map-explorer ./dist/index.js --html result.html",
"flow": "flow",
"stylelint": "stylelint lib/src/css/style.scss --syntax scss",
"stylelint:fix": "stylelint src/css/style.scss --syntax scss --fix"
},
"keywords": [
"gifpicker",
"gifchoser",
"gif-picker",
"gif-chooser",
"tenor",
"meme",
"gif",
"picker",
"giphy",
"gif",
"chooser",
"gifchooser",
"meme finder",
"meme",
"react",
"gif chooser",
"gif picker"
],
"author": "David Verhulst",
"license": "ISC",
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.7",
"babel-eslint": "^9.0.0",
"codecov": "^3.5.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.3.0",
"flow-bin": "^0.102.0",
"jest": "^24.4.0",
"moxios": "^0.4.0",
"node-sass": "^4.11.0",
"parcel-bundler": "^1.11.0",
"prettier": "^1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"redux-mock-store": "^1.5.3",
"sass": "^1.22.7",
"source-map-explorer": "^2.0.1",
"stylelint": "^10.1.0",
"stylelint-config-airbnb": "0.0.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-order": "^3.0.1",
"stylelint-scss": "^3.9.1",
"surge": "^0.21.3"
},
"dependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"axios": "^0.18.0",
"randomcolor": "^0.5.4",
"react-redux": "^6.0.1",
"react-router": "^5.0.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>lib/setupTests.js"
]
}
}