-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.26 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
{
"name": "@microsoft/autocomplete-search-box",
"version": "1.0.29",
"private": false,
"description": "A suite of reusable components and utilities. AutocompleteSearchBox is a wrapper over FluentUI Searchbox to provide search suggestions. RenderIf is used forconditional rendering. HighlightTextView highlights the matching parts of the text based on provided filter.",
"dependencies": {
"@fluentui/react": "^7.155.3",
"axios": "^0.21.1"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^26.0.20",
"@types/node": "^12.19.12",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"bootstrap": "4.5.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "3.4.4",
"typescript": "^4.0.5",
"web-vitals": "^0.2.4"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x",
"react-scripts": "3.x"
},
"scripts": {
"start": "react-scripts start",
"build-site": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean": "if exist dist rd /s /q dist",
"prepareBuild": "npm run clean && mkdir dist & npm version patch --no-git-tag-version",
"compile": "set NODE_ENV=production & babel src/libs --out-dir dist --extensions \".ts,.tsx\" --copy-files",
"copy": "node copy-files",
"build": "npm run prepareBuild && npm run compile && tsc && npm run copy",
"prepare": "npm run build"
},
"babel": {
"presets": [
"@babel/env",
"@babel/preset-react",
"@babel/preset-typescript"
],
"ignore": [
"**/*.test.js",
"**/stories.js",
"**/*.stories.js"
]
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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"
]
}
}