-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.96 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.96 KB
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
{
"name": "@neolution-ch/react-utils",
"version": "1.1.1",
"description": "todo @drebrez",
"homepage": "https://neolution-ch.github.io/react-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/neolution-ch/react-utils"
},
"license": "MIT",
"author": "Neolution",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"jsnext:main": "dist/index.modern.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --configPlugin rollup-plugin-typescript2",
"lint": "eslint --cache",
"prepack": "yarn build",
"prepare-pr": "yarn prettier . --write && yarn lint && yarn build && yarn test",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"start": "yarn build -w",
"test": "cypress run --component",
"test:all": "yarn test && yarn test:cypress",
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
"storybook": "start-storybook -p 6006"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.21.8",
"@neolution-ch/eslint-config-neolution": "^2.3.0",
"@popperjs/core": "^2.11.7",
"@release-it/keep-a-changelog": "^4.0.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.11.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/rollup-plugin-peer-deps-external": "^2.2.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"cypress": "^15.0.0",
"eslint": "^9.25.1",
"jest": "^29.6.1",
"jest-localstorage-mock": "^2.4.26",
"jiti": "^2.6.1",
"nodemon": "^2.0.22",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"release-it": "^16.1.2",
"rollup": "^4.32.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.1.6",
"vite": "^7.1.3",
"webpack": "^5.82.0",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.2.0",
"react-dom": "^18.2.0 || ^19.2.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}