-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "react-with-size",
"version": "0.2.1",
"description": "React HOC for monitor the size of a component",
"main": "dist/src/index.js",
"scripts": {
"clear-dist": "rm -rf dist",
"build": "yarn clear-dist && babel ./src --out-dir dist/src --extensions \".ts,.tsx,.js\" && tsc --emitDeclarationOnly",
"watch": "tsc --watch",
"prepublish": "yarn build"
},
"repository": "https://github.com/beanloop/react-with-size.git",
"author": "Beanloop AB",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/react": "^16.4.6",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"tslint": "^4.0.2",
"tslint-config-beanloop": "^0.2.0",
"typescript": "^3.8.3"
},
"dependencies": {
"lodash.throttle": "^4.1.1",
"recompose": "^0.27.1"
},
"peerDependencies": {
"react": "16.x"
}
}