-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "react-fade-in",
"version": "2.0.1",
"description": "Super-easy fade-in animation for react children",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"url": "[email protected]:gkaemmer/react-fade-in.git",
"type": "git"
},
"scripts": {
"build": "npm run build:clean && npm run build:lib",
"build:clean": "rm -rf lib",
"build:lib": "tsc",
"prepublish": "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",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "^7.8.3",
"@types/react": "^17.0.0",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^1.1.3",
"typescript": "^4.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"peerDependencies": {
"react": "^16.8 || 17"
}
}