This repository was archived by the owner on Oct 14, 2021. It is now read-only.
forked from chenglou/react-motion
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.34 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.34 KB
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
105
106
{
"name": "@serprex/react-motion",
"version": "0.6.3",
"description": "A spring that solves your animation problems.",
"main": "lib/react-motion.js",
"module": "lib/react-motion.esm.js",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/runtime": "^7.12.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-replace": "^3.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"codemirror": "^5.5.0",
"cross-env": "^7.0.2",
"css-loader": "^6.3.0",
"flow-bin": "^0.160.1",
"flow-copy-source": "^2.0.9",
"husky": "^7.0.2",
"inject-loader": "^4.0.1",
"isparta-loader": "^2.0.0",
"jasmine-core": "^3.1.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-diff-reporter": "^2.0.0",
"karma-webpack": "^5.0.0",
"lint-staged": "^11.1.2",
"lodash.range": "^3.0.1",
"prettier": "^2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.32.0",
"rollup-plugin-uglify": "^6.0.4",
"style-loader": "^3.3.0",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^4.2.1"
},
"scripts": {
"start": "node server.js",
"prebuild:dist": "rm -rf build",
"build:dist": "rollup -c",
"prebuild:lib": "rm -rf lib",
"build:lib": "babel src --out-dir lib",
"build:flow": "flow-copy-source -v src lib",
"build": "npm run build:dist && npm run build:lib && npm run build:flow",
"build-demos": "webpack",
"lint": "eslint --ext .js,.jsx .",
"flow_check": "flow check",
"prepublishOnly": "npm run build",
"test": "cross-env NODE_ENV=test karma start ./karma.conf.js --single-run",
"test:travis": "cross-env NODE_ENV=test karma start ./karma.conf.js --single-run",
"test:dev": "cross-env NODE_ENV=test karma start ./karma.conf.js --no-single-run --auto-watch",
"test:cov": "cross-env NODE_ENV=test karma start ./karma.conf.js --single-run --reporters coverage",
"gh-pages": "git fetch origin && git checkout gh-pages && git reset --hard origin/gh-pages && git rebase origin/master --force-rebase && npm run build-demos && git add . && git commit --amend --no-edit && git push origin gh-pages --force && git checkout master",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "https://github.com/chenglou/react-motion.git"
},
"keywords": [
"react",
"component",
"react-component",
"transitiongroup",
"spring",
"tween",
"motion",
"animation",
"transition",
"ui"
],
"author": [
"nkbt",
"chenglou"
],
"license": "MIT",
"dependencies": {
"performance-now": "^2.1.0",
"prop-types": "^15.5.8",
"raf": "^3.1.0"
}
}