-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.69 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
{
"private": false,
"name": "retransition",
"version": "0.4.3",
"description": "A library that helps you create smooth transitions in your react app.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"sideEffects": false,
"scripts": {
"build": "rimraf dist && rollup -c && node ./write-entry.js",
"test": "TESTING=true rollup -c && nyc instrument tests/index.umd.js > tests/lib.js && jest --runInBand",
"test:coverage": "rimraf coverage && COVERAGE=true yarn test && yarn coverage",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"coverage": "nyc report --reporter lcov --reporter text -t coverage --report-dir coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"react",
"transition",
"animation",
"reaction-transition",
"react-animation"
],
"author": "Ayub Begimkulov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ayub-Begimkulov/retransition.git"
},
"homepage": "https://github.com/Ayub-Begimkulov/retransition",
"bugs": {
"url": "https://github.com/Ayub-Begimkulov/retransition/issues"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@rollup/plugin-replace": "^2.3.4",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-loader": "^8.2.3",
"css-loader": "^5.2.7",
"eslint": "^7.12.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"istanbul-lib-coverage": "^3.0.0",
"jest": "^26.6.3",
"nyc": "^15.1.0",
"playwright": "^1.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"sass": "^1.45.2",
"sass-loader": "^10.2.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.4",
"typescript": "^4.1.3",
"v8-to-istanbul": "^7.1.0"
},
"peerDependencies": {
"react": ">=16.8.0 || 17.x",
"react-dom": ">=16.8.0 || 17.x"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"dependencies": {}
}