-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "animated-blobs",
"version": "1.0.0",
"description": "Animated Blobs Generator - Create cool animated GIF or SVG shapes for your designs",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true npm run build",
"type-check": "tsc",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx ./src --fix"
},
"keywords": [
"blobs",
"animation",
"animated-blobs",
"gif",
"design"
],
"author": "Max Romanyuta <xom9ik.code@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xom9ikk/animated-blobs.git"
},
"bugs": {
"url": "https://github.com/xom9ikk/animated-blobs/issues"
},
"homepage": "https://github.com/xom9ikk/animated-blobs#readme",
"dependencies": {
"blobs": "^2.1.0",
"framer-motion": "^3.1.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"next": "10.0.0",
"next-pwa": "5.0.2",
"next-redux-wrapper": "6.0.2",
"rc-slider": "^9.7.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.2",
"react-tooltip": "^4.2.10",
"react-use-clipboard": "1.0.7",
"react-useportal": "^1.0.13",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.8"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.4",
"@types/downloadjs": "^1.4.2",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.14",
"@types/redux-actions": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"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",
"sass": "^1.32.0",
"typescript": "4.0",
"worker-loader": "^3.0.7",
"worker-plugin": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}