-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.07 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "powerframework360",
"author": {
"name": "Rex Kenley Tan",
"email": "[email protected]"
},
"homepage": "https://pfw360.powerobjects.com",
"version": "1.0.0-GitVersion",
"license": "MIT",
"keywords": [
"component",
"d365",
"fluent-ui",
"javascript",
"library",
"pcf",
"react",
"storybook",
"typescript",
"unified-interface"
],
"description": "A React component library for D365",
"repository": {
"type": "git",
"url": "https://[email protected]/POProductDevelopment/PowerFramework360/_git/PowerFramework360"
},
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rollup -c",
"build:storybook": "build-storybook",
"lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx",
"prebuild:storybook": "jest --ci --coverage --coverageReporters=cobertura --json --outputFile=./coverage/.jest-test-results.json",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"prettier": "prettier --ignore-path .gitignore",
"prettier:check": "npm run prettier -- --list-different pcf src stories",
"prettier:format": "npm run prettier -- --ignore-unknown --write pcf src stories",
"storybook": "start-storybook -p 6006",
"test": "jest",
"test:coverage": "jest --coverage --coverageReporters=cobertura",
"test:generate-output": "jest --json --outputFile=./coverage/.jest-test-results.json",
"test:watch": "jest --watch",
"types:check": "tsc",
"validate": "npm-run-all --parallel types:check lint prettier:check"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@fluentui/jest-serializer-merge-styles": "^8.0.13",
"@fluentui/react": "^8.45.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^6.4.18",
"@storybook/addon-essentials": "^6.4.18",
"@storybook/addon-interactions": "^6.4.18",
"@storybook/addon-jest": "^6.4.18",
"@storybook/addon-links": "^6.4.18",
"@storybook/builder-webpack5": "^6.4.18",
"@storybook/jest": "^0.0.5",
"@storybook/manager-webpack5": "^6.4.18",
"@storybook/react": "^6.4.18",
"@storybook/testing-library": "^0.0.8",
"@storybook/testing-react": "^1.2.3",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@tsconfig/recommended": "^1.0.1",
"@types/google.maps": "^3.47.0",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.177",
"@types/react-dom": "^17.0.11",
"@types/uuid": "^8.3.3",
"@types/xrm": "^9.0.47",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"babel-jest": "^27.4.2",
"babel-loader": "^8.2.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-polyfill-corejs3": "^0.4.0",
"bingmaps": "^2.0.3",
"date-fns": "^2.27.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-storybook": "^0.5.6",
"eslint-plugin-testing-library": "^5.0.0",
"husky": "^7.0.4",
"jest": "^27.4.2",
"lint-staged": "^12.1.2",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.60.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.4",
"rollup-plugin-visualizer": "^5.5.2",
"tsc-files": "^1.1.3",
"tslib": "^2.3.1",
"typescript": "^4.5.2",
"uuid": "^8.3.2",
"webpack": "^5.65.0"
},
"peerDependencies": {
"@fluentui/react": "^8.34.5",
"date-fns": "^2.22.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}