-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.21 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
{
"name": "react-easy-animations",
"description": "A React Component that provides regular animation for common object and some animation effects especially for typography like letters and multi-line text.",
"keywords": [
"react",
"css",
"animation",
"animations",
"text",
"reveal"
],
"homepage": "https://prismosoft.github.io/react-easy-animations-playground/",
"version": "0.3.1",
"author": "prismosoft",
"license": "ISC",
"main": "dist/index.js",
"scripts": {
"start": "npm run linkall && webpack --watch",
"build": "npm run unlinkall && webpack",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add .",
"postversion": "git push && git push --tags",
"lint": "eslint --no-error-on-unmatched-pattern src/**/*.{ts,tsx,json}",
"lint:fix": "eslint --no-error-on-unmatched-pattern --fix 'src/**/*.{ts,tsx,json}'",
"format": "prettier --write 'src/**/*.{ts,tsx,css,md,json}' --config ./.prettierrc",
"linkall": "npm link react react-dom",
"unlinkall": "npm unlink --no-save react react-dom && npm i react react-dom"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"babel-loader": "^9.0.1",
"css-loader": "^3.4.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"style-loader": "^1.1.2",
"styled-components": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"styled-components": ">= 5"
},
"repository": "github:prismosoft/react-easy-animations"
}