forked from aholachek/animate-css-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "animate-css-grid",
"version": "1.4.3",
"description": "Easy, smooth transitions for CSS grid",
"homepage": "https://github.com/aholachek/animate-css-grid",
"keywords": [
"css",
"grid",
"animation",
"transition",
"mutation-observer",
"layout"
],
"types": "dist/index.d.ts",
"main": "dist/main.js",
"sideEffects": false,
"scripts": {
"prepublishOnly": "yarn run build",
"build": "webpack --mode production",
"dev": "./node_modules/.bin/webpack-dev-server --mode development --config demo/webpack.config.js",
"check-types": "tsc",
"preversion": "npm run check-types"
},
"author": "Alex Holachek",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aholachek/animate-css-grid"
},
"bugs": "https://github.com/aholachek/animate-css-grid/issues",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.7.4",
"babel-loader": "^8.0.6",
"npm-run-all": "^4.1.5",
"tslint": "^5.20.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@popmotion/easing": "^1.0.2",
"lodash.throttle": "^4.1.1",
"popmotion": "^8.5.5"
}
}