forked from welldone-software/why-did-you-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.25 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@welldone-software/why-did-you-render",
"version": "3.2.0",
"description": "Monkey patches React to notify you about avoidable re-renders.",
"main": "dist/cjs/whyDidYouRender.min.js",
"types": "src/whyDidYouRender.d.ts",
"module": "dist/esm/whyDidYouRender.min.js",
"browser": "dist/umd/whyDidYouRender.min.js",
"main-no-classes-transpile": "dist/no-classes-transpile/cjs/whyDidYouRender.min.js",
"module-no-classes-transpile": "dist/no-classes-transpile/esm/whyDidYouRender.min.js",
"browser-no-classes-transpile": "dist/no-classes-transpile/umd/whyDidYouRender.min.js",
"files": [
"src",
"dist"
],
"scripts": {
"start": "cross-env PORT=3003 NODE_ENV=development node demo/serve",
"build": "cross-env NODE_ENV=production rollup --config",
"test": "cross-env NODE_ENV=development TEST=true jest",
"test:watch": "yarn test --watch",
"lint": "esw . --ext=js --cache --cache-location .temp/eslint-cache",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch",
"clear": "rimraf .temp dist demo/dist",
"watch": "concurrently --names \"Serve,Lint,Test\" \"npm:start\" \"npm:lint:watch\" \"npm:test:watch\"",
"checkHealth": "yarn lint && yarn test",
"version": "yarn checkHealth && yarn build && git add --all dist",
"postversion": "git push && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"jest": {
"cacheDirectory": ".temp/jest-cache"
},
"dependencies": {
"lodash": "^4"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.1",
"@types/react": "^16.8.19",
"acorn-walk": "^6.1.1",
"astring": "^1.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-lodash": "^3.3.4",
"concurrently": "^4.1.0",
"create-react-class": "^15.6.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-react": "^7.13.0",
"eslint-watch": "^5.1.2",
"express": "^4.17.1",
"express-history-api-fallback": "^2.2.1",
"husky": "^2.4.1",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-dom": "^3.5.0",
"magic-string": "^0.25.2",
"nollup": "^0.6.2",
"react": "^16.8.6",
"react-dom": "npm:@hot-loader/react-dom@^16.8.6",
"react-hot-loader": "^4.11.0",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"rimraf": "^2.6.3",
"rollup": "^1.15.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-commonjs-alternate": "^0.0.5",
"rollup-plugin-license": "^0.9.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.0.0"
},
"authors": [
"Vitali Zaidman <[email protected]> (https://github.com/vzaidman)"
],
"license": "MIT",
"repository": "https://github.com/welldone-software/why-did-you-render",
"keywords": [
"react",
"component",
"pure",
"performance",
"render",
"update",
"tool"
]
}