-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 3.17 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
{
"name": "react-tweenful",
"version": "0.1.0",
"homepage": "http://teodosii.github.io/react-tweenful",
"description": "Animation engine for React",
"main": "dist/react-tweenful.js",
"scripts": {
"build": "npm run build:library:prod",
"build:library:dev": "webpack --config webpack.dev.js",
"build:library:prod": "webpack --config webpack.prod.js",
"build:site:dev": "webpack --config webpack.site.dev.js",
"build:site:prod": "webpack --config webpack.site.prod.js",
"watch:library": "webpack -w --config webpack.dev.js",
"start": "webpack-dev-server --config ./webpack.site.dev.js",
"predeploy": "npm run build:site:prod",
"deploy": "gh-pages -d dist",
"publish:npm": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/teodosii/react-tweenful"
},
"bugs": {
"url": "https://github.com/teodosii/react-tweenful/issues"
},
"keywords": [
"react",
"react-animation",
"react-animation-component",
"react-tween",
"animation",
"animation-engine",
"react-component",
"tween"
],
"author": "Rares Mardare",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"css-select-base-adapter": "^0.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-alias": "^1.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^5.0.2",
"font-awesome": "^4.7.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"object-assign": "^4.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.18.2",
"react": "^16.12.0",
"react-addons-create-fragment": "^15.6.2",
"react-dom": "^16.12.0",
"react-github-button": "^0.1.11",
"react-github-corner": "^2.3.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-syntax-highlighter": "^12.2.1",
"react-test-renderer": "^16.12.0",
"regenerator-runtime": "^0.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"peerDependencies": {
"react": "^16.0.0"
},
"dependencies": {
"bezier-easing": "^2.1.0",
"color-parser": "^0.1.0",
"prop-types": "^15.6.2"
}
}