forked from rcnsh/react-fade-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "react-fade-in",
"version": "2.0.5",
"description": "Super-easy fade-in animation for react children (personal fork)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"url": "git+ssh://[email protected]/PGuimarais/react-fade-in.git",
"type": "git"
},
"scripts": {
"build": "npm run build:lib",
"build:lib": "tsc",
"prepublish": "SET NODE_ENV=production & npm run build",
"dev:server": "EXAMPLE=true webpack-dev-server --port 3124 --hot --inline --content-base example/public",
"dev:compile": "tsc --watch",
"dev": "npm run dev:server"
},
"author": "Graham Kaemmer",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "^7.18.6",
"@types/react": "^18.0.38",
"babel-loader": "^9.1.2",
"html-webpack-plugin": "^5.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.10",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"peerDependencies": {
"react": "^16.8 || 17 || 18",
"react-dom": "^16.8 || 17 || 18"
},
"bugs": {
"url": "https://github.com/RCNOverwatcher/react-fade-in/issues"
},
"homepage": "https://github.com/RCNOverwatcher/react-fade-in#readme",
"directories": {
"example": "example",
"lib": "lib"
}
}