-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 5.51 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 5.51 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
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
105
{
"name": "@shko-online/componentframework-mock-tests",
"version": "0.1.0",
"description": "Test for our mocking library which helps with testing PowerApps Component Framework Components",
"main": "index.js",
"repository": "https://github.com/shko-online/ComponentFramework-Mock-React-Tests.git",
"author": "Shko Online <sales@shko.online> (https://shko.online)",
"license": "MIT",
"private": true,
"engines": {
"yarn": "NO LONGER USED - Please use npm"
},
"scripts": {
"postinstall": "npm run install:albx & npm run install:breadcrumb & npm run install:auto-width-label & npm run install:calendar & npm run install:command-bar & npm run install:context-menu & npm run install:details-list & npm run install:pivot & npm run install:nav & npm run install:picker & npm run install:shimmer & npm run install:tag-list & npm run install:theme-generator",
"install:albx": "cd ComponentFramework-Mock && npm install",
"install:breadcrumb": "cd powercat-code-components\\Breadcrumb && npm install",
"install:auto-width-label": "cd powercat-code-components\\AutoWidthLabel && npm install",
"install:calendar": "cd powercat-code-components\\Calendar && npm install",
"install:command-bar": "cd powercat-code-components\\CommandBar && npm install",
"install:context-menu": "cd powercat-code-components\\ContextMenu && npm install",
"install:details-list": "cd powercat-code-components\\DetailsList && npm install",
"install:pivot": "cd powercat-code-components\\Pivot && npm install",
"install:nav": "cd powercat-code-components\\Nav && npm install",
"install:shimmer": "cd powercat-code-components\\Shimmer && npm install",
"install:picker": "cd powercat-code-components\\Picker && npm install",
"install:tag-list": "cd powercat-code-components\\TagList && npm install",
"install:theme-generator": "cd powercat-code-components\\ThemeGenerator && npm install",
"build": "npm run build:breadcrumb & npm run build:auto-width-label & npm run build:calendar & npm run build:command-bar & npm run build:context-menu & npm run build:details-list & npm run build:pivot & npm run build:nav & npm run build:shimmer & npm run build:tag-list & npm run build:theme-generator & npm run build:picker",
"build:breadcrumb": "cd powercat-code-components\\Breadcrumb && npm run build",
"build:auto-width-label": "cd powercat-code-components\\AutoWidthLabel && npm run build",
"build:calendar": "cd powercat-code-components\\Calendar && npm run build",
"build:command-bar": "cd powercat-code-components\\CommandBar && npm run build",
"build:context-menu": "cd powercat-code-components\\ContextMenu && npm run build",
"build:details-list": "cd powercat-code-components\\DetailsList && npm run build",
"build:pivot": "cd powercat-code-components\\Pivot && npm run build",
"build:nav": "cd powercat-code-components\\Nav && npm run build",
"build:picker": "cd powercat-code-components\\Picker && npm run build",
"build:shimmer": "cd powercat-code-components\\Shimmer && npm run build",
"build:tag-list": "cd powercat-code-components\\TagList && npm run build",
"build:theme-generator": "cd powercat-code-components\\ThemeGenerator && npm run build",
"test": "jest --coverage --maxWorkers=4 --config jest.config.js",
"test-no-cover": "jest --maxWorkers=4",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"_moduleAliases": {
"@root": ".",
"@fluentui/date-time-utilities/lib-commonjs/dateMath/dateMath": "node_modules/@fluentui/date-time-utilities/lib-commonjs/dateMath/dateMath"
},
"dependencies": {
"@fluentui/react": "8.29.0",
"@fluentui/utilities": "8.9.0",
"@react-hook/resize-observer": "1.2.5",
"enzyme": "3.11.0",
"module-alias": "^2.2.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-test-renderer": "16.8"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.19.3",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.19.3",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@fluentui/jest-serializer-merge-styles": "^8.0.20",
"@shko.online/componentframework-mock": "^0.1.9",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack4": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack4": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@types/jest": "^29.0.3",
"@types/lokijs": "^1.5.7",
"@types/powerapps-component-framework": "^1.3.4",
"@types/react": "16.9.42",
"@types/react-dom": "17.0.11",
"@types/sinon": "^10.0.13",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^4.1.0",
"cheerio": "^1.0.0-rc.12",
"esbuild-loader": "^2.20.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"keyboardjs": "^2.7.0",
"lokijs": "^1.5.12",
"replace-in-file": "^6.3.5",
"sinon": "^14.0.0",
"ts-jest": "^28.0.8",
"ts-loader": "^9.4.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.8.4"
}
}