-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
81 lines (81 loc) · 2.59 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
{
"name": "react-useanimations",
"version": "2.10.0",
"description": "Official React component for useanimations icons",
"repository": {
"type": "git",
"url": "https://github.com/useAnimations/react-useanimations.git"
},
"author": "Tuan Phung, Marek Feikus",
"license": "MIT",
"bugs": {
"url": "https://github.com/useAnimations/react-useanimations/issues"
},
"homepage": "https://github.com/useAnimations/react-useanimations",
"main": "./index",
"keywords": [
"microanimations",
"small",
"svg",
"icons",
"design",
"useanimations"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src -d es2015 --ignore '__tests__','**/*.d.ts' --extensions '.ts,.tsx' --out-dir ./dist --copy-files",
"postbuild": "npm run build:types",
"build:watch": "npm run build --watch",
"build:types": "tsc --emitDeclarationOnly",
"lint": "npx eslint --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "npx eslint --ext .js,.jsx,.ts,.tsx ./src --fix",
"check-types": "tsc --noEmit",
"check-types:watch": "npm run type-check -- --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir docs",
"prepub": "copy package.json dist",
"pub": "npm publish ./dist",
"postpub": "cd dist & del package.json"
},
"dependencies": {
"lottie-web": "^5.5.7"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.6.2",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"eslint": "^6.5.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"nodemon": "^1.19.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"storybook": "^5.3.19",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
}
}