-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.21 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
100
101
102
103
104
{
"name": "group-people",
"version": "1.1.1",
"private": true,
"main": "lib/index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "gulp bundle --ship && gulp package-solution --ship",
"clean": "gulp clean",
"test": "jest",
"testcafe:edge": "testcafe edge:headless:emulation:width=1364;height=800",
"testcafe:firefox": "testcafe firefox:headless",
"testcafe:chrome": "testcafe chrome:headless:emulation:width=1364;height=800",
"testcafe:safari": "testcafe safari:headless",
"doc": "npm run typedoc -- --options typedoc.js --theme ./node_modules/typedoc-neo-theme/bin/default --plugin typedoc-neo-theme",
"typedoc": "typedoc"
},
"dependencies": {
"@microsoft/sp-core-library": "1.11.0",
"@microsoft/sp-lodash-subset": "1.11.0",
"@microsoft/sp-office-ui-fabric-core": "1.11.0",
"@microsoft/sp-property-pane": "1.11.0",
"@microsoft/sp-webpart-base": "1.11.0",
"@pnp/spfx-controls-react": "^1.19.0",
"office-ui-fabric-react": "6.214.0",
"react": "16.8.5",
"react-dom": "16.8.5"
},
"resolutions": {
"@types/react": "16.8.8"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@microsoft/rush-stack-compiler-2.9": "0.7.16",
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
"@microsoft/sp-build-web": "1.11.0",
"@microsoft/sp-module-interfaces": "1.11.0",
"@microsoft/sp-tslint-rules": "1.11.0",
"@microsoft/sp-webpart-workbench": "1.11.0",
"@types/chai": "^4.1.7",
"@types/enzyme": "^3.1.18",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/es6-promise": "0.0.33",
"@types/jest": "^26.0.13",
"@types/mocha": "^5.2.6",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.3",
"@types/sinon": "^9.0.4",
"@types/webpack-env": "1.13.1",
"ajv": "^6.10.0",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.12.1",
"gulp": "^3.9.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"sinon": "^9.0.2",
"testcafe": "^1.14.2",
"testcafe-reporter-junit": "^3.0.2",
"ts-jest": "^26.3.0",
"typedoc": "^0.16.11",
"typedoc-neo-theme": "^1.0.10"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js|ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/src/**/*.test.+(ts|tsx|js)"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura",
"text-summary"
],
"coverageDirectory": "<rootDir>/jest",
"transformIgnorePatterns": [
"node_modules/(?!(@microsoft/sp-core-library))"
],
"testResultsProcessor": "jest-junit",
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy",
"^resx-strings/en-us.json": "<rootDir>/node_modules/@microsoft/sp-core-library/lib/resx-strings/en-us.json",
"office-ui-fabric-react/lib/(.*)$": "office-ui-fabric-react/lib-commonjs/$1",
"GroupPeopleWebPartStrings": "<rootDir>/src/webparts/groupPeople/loc/mystrings.d.ts"
},
"setupFiles": [
"<rootDir>/src/webparts/groupPeople/mocks/MockLocalStorage.js"
]
}
}