forked from helgastogova/npm-react-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "npm-react-typescript-template",
"version": "1.0.7",
"description": "An empty base template for publishing a React TS package to npmjs library.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "eslint './{src,app}/**/*.{ts,tsx}'",
"size": "size-limit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/helgastogova/npm-react-typescript-template"
},
"keywords": [
"react",
"typescript",
"bottom-sheet"
],
"author": "Olga Stogova <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/helgastogova/npm-react-typescript-template/issues"
},
"homepage": "https://github.com/helgastogova/npm-react-typescript-template#readme",
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"typescript": ">=3.7.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@size-limit/preset-small-lib": "^9.0.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"identity-obj-proxy": "^3.0.0",
"npm": "^10.1.0",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^9.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.3",
"tslib": "^2.6.2"
}
}