-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 2.28 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
{
"name": "react-glitch-effect",
"version": "3.1.0",
"description": "A glitch effects",
"main": "dist/index.js",
"scripts": {
"start": "webpack serve --mode development --color --progress",
"transpile": "babel src -d core --copy-files",
"build": "webpack --mode production --color --progress",
"deploy": "gh-pages -d example/dist",
"publish-demo": "npm run build && npm run deploy",
"prepublishOnly": "npm run transpile",
"publish": "npm publish",
"lint": "eslint --fix . && echo 'Lint complete.'"
},
"repository": {
"type": "git",
"url": "https://github.com/sakalx/react-glitch-effect/tree/master"
},
"bugs": {
"url": "https://github.com/sakalx/react-glitch-effect/issues"
},
"homepage": "https://sakalx.github.io/react-glitch-effect/",
"keywords": [
"animation",
"clip-path",
"efect",
"glitch",
"react"
],
"author": "Serhii Sakal <sakals@mail.ua>",
"license": "MIT",
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/runtime": "^7.12.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"style-loader": "^2.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"prop-types": "^15.7.2",
"react-syntax-highlighter": "^15.4.3"
}
}