-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.56 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
{
"name": "@zeilsell-user1/generic-button-component",
"type": "module",
"version": "0.1.3",
"description": "This is a simple generic button component to be used with react/next apps",
"author": "Richard George <[email protected]>",
"license": "MIT",
"private": false,
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": "https://github.com/zeilsell-user1/generic-button-component.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"compile": "tsc --project tsconfig.json",
"compile:clean": "tsc --build --clean",
"lint": "eslint . --ext=.jsx,.js,.tsx,.ts",
"lint:fix": "eslint . --ext=.jsx,.js,.tsx,.ts --fix",
"lint:css": "stylelint src/generic-button/styles.css",
"pretty": "prettier --write .",
"ladle": "ladle serve",
"rollup": "rollup -c rollup.config.mjs",
"rollup:watch": "rollup -cw",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {},
"devDependencies": {
"@ladle/react": "^2.4.5",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.31.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-simple-import-sort": "^10.0.0",
"install-peers": "^1.0.4",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^3.9.1",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"typescript-eslint": "^0.0.1-alpha.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}