-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
101 lines (101 loc) · 3.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
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
{
"name": "react-lifecycle-visualizer",
"author": "Martijn Schrage (https://www.oblomov.com)",
"version": "3.1.1",
"description": "Visualizer for React lifecycle methods",
"main": "./dist/index.js",
"typings": "./index.d.ts",
"scripts": {
"lint": "eslint --ext js,jsx --max-warnings 0 src test examples",
"test": "npm run lint && npm run test-typings && jest",
"test-typings": "tsc -p test/typescript",
"start": "webpack-dev-server --mode development",
"build-demo": "webpack --mode development",
"clean-lib": "rm -rf dist",
"build-lib": "npm run clean-lib && sass --embed-sources src/react-lifecycle-visualizer.scss dist/react-lifecycle-visualizer.css && BABEL_ENV=production babel src -d dist --ignore react-lifecycle-visualizer.scss --copy-files",
"prepublishOnly": "npm run test && npm run build-lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Oblosys/react-lifecycle-visualizer.git"
},
"keywords": [
"react",
"reactjs",
"lifecycle",
"trace",
"visualize",
"animated"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Oblosys/react-lifecycle-visualizer/issues"
},
"homepage": "https://github.com/Oblosys/react-lifecycle-visualizer#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"moduleNameMapper": {
"\\.(scss)$": "<rootDir>/node_modules/jest-css-modules"
}
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-transform-react-jsx-source": "^7.19.6",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-stage-2": "^7.8.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.4",
"babel-loader": "^9.1.2",
"babel-plugin-transform-rename-import": "^2.3.0",
"css-loader": "^6.7.3",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"typescript": "^5.0.4",
"webpack": "^5.82.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"prop-types": "^15.8.1",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2"
},
"peerDependencies": {
"react": "^16.3.0 || ^17.0.0 || ^18.00",
"react-dom": "^16.3.0 || ^17.0.0 || ^18.00"
}
}