-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
99 lines (99 loc) · 2.72 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "fluentui-editable-grid",
"version": "1.12.1",
"license": "MIT",
"description": "Wrapper over the existing DetailsList that makes in-place editability work like a dream(among many other new features)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluentUIEditableDetailsList"
},
"keywords": [
"editable",
"grid",
"detailslist",
"fluentui"
],
"bugs": "https://github.com/microsoft/FluentUIEditableDetailsList/issues",
"dependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"@babel/preset-stage-0": "^7.8.3",
"@fluentui/react": "^8.26.0",
"@fluentui/react-hooks": "^8.3.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/file-saver": "^2.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.17",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"cpx": "^1.5.0",
"file-saver": "^2.0.2",
"office-ui-fabric-react": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"react-toastify": "^7.0.4",
"typescript": "^4.3.5",
"web-vitals": "^1.1.2",
"webpack-cli": "^4.7.2",
"xlsx": "^0.17.0",
"y18n": "^3.2.2"
},
"devDependencies": {
"immer": ">=9.0.6",
"just-scripts": "^0.27.0",
"just-stack-react": "^1.0.0",
"marked": ">=4.0.10",
"nth-check": ">=2.0.1",
"tar": ">=6.1.9"
},
"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",
"compile": "set NODE_ENV=production & babel src/libs --out-dir dist --extensions \".ts,.tsx\" --copy-files",
"copy": "cpx \"{package.json,README.md}\" dist",
"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"
]
},
"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"
]
}
}