-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
105 lines (105 loc) · 3.12 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
102
103
104
105
{
"name": "lottie-react",
"version": "2.4.0",
"description": "Lottie for React",
"keywords": [
"lottie",
"react",
"lottie react",
"react lottie",
"lottie web",
"animation",
"component",
"hook"
],
"homepage": "https://lottiereact.com",
"bugs": {
"url": "https://github.com/Gamote/lottie-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gamote/lottie-react.git"
},
"license": "MIT",
"author": "David Gamote",
"main": "build/index.js",
"module": "build/index.es.js",
"browser": "build/index.umd.js",
"types": "build/index.d.ts",
"style": "build/index.css",
"files": [
"/build"
],
"scripts": {
"build": "run-s tsc:compile rollup:compile",
"postbuild": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"build:watch": "run-p tsc:compile:watch rollup:compile:watch",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"docz:build": "docz build",
"deploy:docs": "echo 'lottiereact.com' > ./docs-dist/CNAME && gh-pages -d docs-dist",
"docz:dev": "docz dev",
"docz:serve": "docz build && docz serve",
"prepublishOnly": "rm -rf build && yarn build",
"rollup:compile": "rollup -c",
"rollup:compile:watch": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"tsc:compile": "tsc",
"tsc:compile:watch": "tsc --watch"
},
"dependencies": {
"lottie-web": "^5.10.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@jest/types": "^27.4.2",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"coveralls": "^3.1.1",
"docz": "^2.3.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"get-pkg-repo": "^5.0.0",
"gh-pages": "^3.2.3",
"jest": "^27.4.7",
"jest-canvas-mock": "^2.3.1",
"node-sass": "^8.0.0",
"npm-run-all": "4.1.5",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^17.0.2",
"rollup": "^2.64.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}