-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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": "react-npm-starter",
"version": "1.0.0",
"description": "A starter project for publishing NPM packages with React and Typescript.",
"homepage": "https://dcooney.github.io/react-npm-starter/",
"source": "src/lib/Example.tsx",
"types": "dist/lib/Example.d.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"overrides": {
"typescript": "^5.2.2"
},
"scripts": {
"start": "react-scripts start",
"dev": "microbundle watch",
"build": "rm -rf dist && microbundle",
"build:docs": "BUILD_PATH='./docs' react-scripts build",
"eject": "react-scripts eject"
},
"files": [
"dist"
],
"peerDependencies": {
"react": ">=18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.15",
"microbundle": "^0.15.1",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"author": "Darren Cooney",
"license": "MIT",
"keywords": [
"npm starter",
"react",
"typescript"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dcooney/react-npm-starter.git"
},
"bugs": {
"url": "https://github.com/dcooney/react-npm-starter/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}