-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.04 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
{
"name": "sample-component-lib",
"version": "0.1.0",
"private": true,
"main": "dist/index.js",
"files": [
"dist",
"types"
],
"dependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^16.18.2",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8"
},
"scripts": {
"clean": "rm -rf dist",
"start": "react-scripts start",
"build": "yarn clean && tsc --build --verbose && copyfiles -u 1 -V src/**/*.css dist",
"build-cra": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"copyfiles": "^2.4.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.4"
}
}