-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.59 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
{
"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": "npm run test:generate-output",
"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",
"storybook": "start-storybook -p 6006",
"test": "jest",
"test:ci": "jest --ci --coverage --coverageReporters=cobertura",
"test:watch": "jest --watch",
"test:generate-output": "jest --json --outputFile=./stories/.jest-test-results.json || true",
"types:check": "tsc",
"validate": "npm-run-all --parallel types:check lint prettier:check"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@fluentui/jest-serializer-merge-styles": "^8.0.11",
"@fluentui/react": "^8.37.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^6.4.8",
"@storybook/addon-essentials": "^6.4.8",
"@storybook/addon-interactions": "^6.4.8",
"@storybook/addon-jest": "^6.4.8",
"@storybook/addon-links": "^6.4.8",
"@storybook/jest": "^0.0.5",
"@storybook/react": "^6.4.8",
"@storybook/testing-library": "^0.0.7",
"@storybook/testing-react": "^1.2.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@tsconfig/recommended": "^1.0.1",
"@types/google.maps": "^3.46.0",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.176",
"@types/react-dom": "^17.0.10",
"@types/uuid": "^8.3.1",
"@types/xrm": "^9.0.47",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"bingmaps": "^2.0.3",
"date-fns": "^2.25.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-testing-library": "^4.12.4",
"husky": "^7.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.58.0",
"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.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
},
"peerDependencies": {
"@fluentui/react": "^8.34.5",
"date-fns": "^2.22.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}