-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
135 lines (135 loc) · 5.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "dyna-ts-react-module-boilerplate",
"version": "18.0.7",
"description": "React Component / Module boilerplate",
"repository": {
"type": "git",
"url": "http://github.com/aneldev/dyna-ts-react-module-boilerplate"
},
"private": false,
"sideEffects": true,
"source": "src/index.tsx",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"esnext": "dist/index.js",
"scripts": {
"bootstrap": "echo Bootstrap started... && mv README.md README.boilerplate.md && echo \\# readme > README.md && pnpm install && rimraf .git && node bootstrap.js",
"install-clean": "rimraf node_modules && pnpm install",
"storybook-start": "storybook dev -p 6006",
"storybook-deploy": "storybook build && gh-pages -d storybook-static",
"build": "pnpm lint && rimraf ./dist && webpack --config webpack.dist.config.js",
"build-watch": "rimraf ./dist && pnpm webpack --watch --config webpack.dist.config.js",
"build-analyze": "webpack --config webpack.dist.analyze.config.js",
"commit": "git add -u && git add -A && git commit --allow-empty -m",
"commit-amend": "git add -u && git add -A && git commit --amend --allow-empty --no-edit",
"lint": "eslint -c .eslintrc.js ./src",
"lint-watch": "nodemon --watch src --ext ts,tsx,less,scss --exec \"pnpm lint\"",
"lint-fix": "eslint -c .eslintrc.js --fix ./src",
"lint-fix-watch": "nodemon --watch src --ext ts,tsx,less,scss --exec \"pnpm lint-fix\"",
"test": "jest --coverage --no-cache --runInBand",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test-watch": "jest --watch --verbose --runInBand",
"test-no-coverage": "jest --collectCoverage=false --no-cache --runInBand",
"test-update-snapshots": "jest --updateSnapshot --runInBand",
"update-deps": "rimraf pnpm-lock.yaml && pnpm update --latest",
"publish-push": "pnpm version patch && pnpm publish --no-git-checks && git push && git push --tags",
"release": "pnpm build && pnpm test && git add -u && git add -A && git commit --allow-empty -m \"Build changes\" && pnpm publish-push && pnpm storybook-deploy"
},
"keywords": [
"react",
"component",
"boilerplate"
],
"author": "Anel dev",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.11.4",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@chromatic-com/storybook": "^1.7.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-webpack5": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"babel-preset-minify": "^0.5.2",
"babel-preset-react-app": "^10.0.1",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^7.1.2",
"dyna-guid": "^2.2.1",
"dyna-node-arguments": "^2.0.1",
"dyna-node-fs": "^1.0.4",
"eslint": "^7.32.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-etc": "^2.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.8.0",
"fake-indexeddb": "^6.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"gh-pages": "^6.1.1",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-fixed-jsdom": "^0.0.6",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"nodemon": "^3.1.7",
"postcss-cli": "^11.0.0",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "^8.1.1",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.2",
"react-test-renderer": "^18.3.1",
"rimraf": "^6.0.1",
"sass": "^1.78.0",
"sass-loader": "^16.0.1",
"source-map-loader": "5.0.0",
"storybook": "^8.2.9",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"typed-css-modules-loader": "^0.0.18",
"typescript": "^5.5.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"npm": ">=10.0.0 <11.0.0",
"node": ">=20.0.0 <21.0.0"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}