forked from microsoft/Msdyn365.Commerce.Online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.67 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
{
"name": "Msdyn365.Commerce.Online",
"version": "1.0.0",
"private": true,
"scripts": {
"analyze": "SET ANALYZE_BUNDLE=true && yarn msdyn365b start --use-eslint",
"analyze:prod": "SET ANALYZE_BUNDLE=true && yarn msdyn365b build --use-eslint",
"build": "yarn msdyn365b build --use-eslint",
"build:prod": "yarn clean && yarn msdyn365b build --use-eslint",
"clean": "yarn rimraf build lib dist .tmp gendef.lock",
"format": "yarn prettier **/**.{ts,tsx}",
"format:fix": "yarn prettier **/**.{ts,tsx} --write",
"lint": "yarn eslint src/**/*.{ts,tsx}",
"lint:fix": "yarn eslint src/**/*.{ts,tsx} --fix",
"precommit": "lint-staged",
"start": "yarn msdyn365b start local --use-eslint",
"start:prod": "SET NODE_ENV=production && node build/server.js",
"integration": "integration"
},
"devDependencies": {
"@msdyn365-commerce/eslint-config": "^1.0.0",
"@types/fs-extra": "^5.0.4",
"@types/jest": "^23.3.10",
"@types/node-fetch": "^2.1.4",
"@types/react": "16.9.0",
"@types/react-dom": "16.0.11",
"@types/react-test-renderer": "^16.0.2",
"@types/reactstrap": "^6.4.3",
"deep-equal": "1.0.1",
"fs-extra": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"lint-staged": "^7.3.0",
"node-fetch": "2.6.1",
"prettier": "^1.15.3",
"react-test-renderer": "^16.4.2",
"semver": "^5.6.0",
"ts-jest": "^23.10.5",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"typeson": "5.10.1"
},
"dependencies": {
"@msdyn365-commerce-modules/starter-pack": "9.51",
"@msdyn365-commerce-modules/fabrikam-design-kit": "9.51",
"@msdyn365-commerce/bootloader": "^1.0.0",
"@msdyn365-commerce/retail-proxy": "9.51",
"@msdyn365-commerce-modules/msdyn365-exp-test-connector": "^1.0.0",
"@msdyn365-commerce-theme/adventureworks-theme-kit": "9.51",
"reactstrap": "^6.5.0",
"stack-trace": "^0.0.10",
"tslib": "^1.9.3",
"path-browserify": "1.0.1",
"stream-browserify": "3.0.0",
"browserify-fs": "1.0.0",
"util": "0.12.3",
"react-universal-component": "^4.0.0",
"@babel/runtime": "^7.12.5",
"run-script-webpack-plugin": "0.0.5",
"terser": "5.5.0",
"terser-webpack-plugin": "5.1.1",
"process": "0.11.10",
"sass-loader": "^10.2.0",
"css-loader": "^2.1.1",
"node-sass": "^6.0.1",
"mini-css-extract-plugin": "^0.5.0",
"css-minimizer-webpack-plugin": "3.1.3",
"ignore-emit-webpack-plugin": "2.0.6"
},
"lint-staged": {
"*.(j|t)s(x)?": [
"yarn format:fix",
"yarn lint:fix",
"git add"
]
},
"jest": {
"preset": "@msdyn365-commerce/cli-internal"
},
"resolutions": {
"@msdyn365-commerce/bootloader": "^1.0.0",
"@msdyn365-commerce/core": "^1.0.0",
"@msdyn365-commerce-modules/core-components": "^1.0.0",
"axios": "^0.21.1",
"@types/react": "16.9.0",
"fork-ts-checker-webpack-plugin": "6.0.8",
"browserify-fs": "1.0.0",
"@babel/runtime": "^7.12.5",
"path-browserify": "1.0.1",
"stream-browserify": "3.0.0",
"run-script-webpack-plugin": "0.0.5",
"terser": "5.5.0",
"terser-webpack-plugin": "5.1.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "3.11.2",
"webpack": "^5.42.0",
"react-universal-component": "^4.0.0",
"util": "0.12.3",
"cheerio": "1.0.0-rc.12"
}
}