-
Notifications
You must be signed in to change notification settings - Fork 516
/
package.json
196 lines (196 loc) · 10.2 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"name": "pim-community-dev",
"version": "7.0.0",
"description": "Akeneo PIM Application",
"homepage": "https://www.akeneo.com/",
"config": {
"source": ".",
"styles": "frontend/build/compile-less.js"
},
"scripts": {
"requirements": "node $npm_package_config_source/frontend/build/check-requirements.js",
"webpack": "yarn requirements && yarn generate-models && NODE_PATH=node_modules webpack --config $npm_package_config_source/webpack.config.js --env=prod",
"webpack-dev": "yarn requirements && yarn generate-models && NODE_PATH=node_modules webpack --config $npm_package_config_source/webpack.config.js",
"webpack-dev-strict": "NODE_OPTIONS=--max_old_space_size=4096 STRICT=1 yarn webpack-dev",
"webpack-watch": "yarn requirements && yarn generate-models && NODE_PATH=node_modules webpack --progress --config $npm_package_config_source/webpack.config.js --watch",
"prettier:run": "prettier --config .prettierrc.json --parser typescript --write \"./src/**/*.{js,ts,tsx}\"",
"prettier:check": "prettier --config .prettierrc.json --parser typescript --check \"./src/**/*.{js,ts,tsx}\" && yarn packages:lint:check",
"before-commit": "yarn prettier && yarn lint && yarn test",
"test": "yarn unit && yarn webpack-test --env=prod && yarn integration && yarn acceptance tests/features",
"webpack-test": "yarn generate-models && webpack --config webpack-test.config.js",
"lint": "eslint src/**/*.js --config .eslintrc --ignore-path .eslintignore --quiet && yarn prettier:check",
"lint-fix": "yarn prettier:run && eslint src/**/*.js --config .eslintrc --ignore-path .eslintignore --quiet --fix",
"unit": "yarn packages:unit && jest --no-cache --config tests/front/unit/jest/unit.jest.js --runInBand",
"integration": "jest --no-cache --config ./tests/front/integration/jest/integration.jest.js",
"acceptance": "cucumber-js --tags @acceptance-front -r ./frontend/test/acceptance/run-steps.js -r ./tests/front/acceptance/cucumber",
"acceptance-html-report": "yarn acceptance ./tests/features/ -f json:public/test_dist/acceptance-js.json && node frontend/test/acceptance/generate-html-report.js",
"less": "node $npm_package_config_styles",
"update-extensions": "node $npm_package_config_source/frontend/build/update-extensions.js",
"generate-models": "yarn workspace @akeneo-pim-community/communication-channel generate-models",
"dsm:build": "yarn --cwd=front-packages/akeneo-design-system install --frozen-lockfile && yarn --cwd=front-packages/akeneo-design-system lib:build",
"shared:lint:check": "yarn workspace @akeneo-pim-community/shared lint:check",
"shared:build": "yarn workspace @akeneo-pim-community/shared lib:build",
"measurement:lint:check": "yarn workspace @akeneo-pim-community/measurement lint:check",
"measurement:build": "yarn workspace @akeneo-pim-community/measurement lib:build",
"catalogs:build": "yarn workspace @akeneo-pim-community/catalogs lib:build",
"process-tracker:lint:check": "yarn workspace @akeneo-pim-community/process-tracker lint:check",
"process-tracker:build": "yarn workspace @akeneo-pim-community/process-tracker lib:build",
"import-export:lint:check": "yarn workspace @akeneo-pim-community/import-export lint:check",
"import-export:build": "yarn workspace @akeneo-pim-community/import-export lib:build",
"structure:build": "yarn workspace @akeneo-pim-community/structure lib:build",
"catalog-volume-monitoring:lint:check": "yarn workspace @akeneo-pim-community/catalog-volume-monitoring lint:check",
"catalog-volume-monitoring:build": "yarn workspace @akeneo-pim-community/catalog-volume-monitoring lib:build",
"config:lint:check": "yarn workspace @akeneo-pim-community/config lint:check",
"config:build": "yarn workspace @akeneo-pim-community/config lib:build",
"category:lint:check": "yarn workspace @akeneo-pim-community/category lint:check",
"category:build": "yarn workspace @akeneo-pim-community/category lib:build",
"category:unit": "yarn workspace @akeneo-pim-community/category test:unit:run",
"packages:unit": "yarn workspace @akeneo-pim-community/shared test:unit:run && yarn workspace @akeneo-pim-community/measurement test:unit:run && yarn workspace @akeneo-pim-community/process-tracker test:unit:run && yarn workspace @akeneo-pim-community/import-export test:unit:run && yarn workspace @akeneo-pim-community/catalog-volume-monitoring test:unit:run && yarn workspace @akeneo-pim-community/category test:unit:run && yarn workspace @akeneo-pim-community/identifier-generator test:unit:run",
"packages:lint:check": "yarn shared:lint:check && yarn measurement:lint:check && yarn process-tracker:lint:check && yarn import-export:lint:check && yarn catalog-volume-monitoring:lint:check && yarn config:lint:check && yarn workspace @akeneo-pim-community/identifier-generator lint:check",
"identifier-generator:build": "yarn workspace @akeneo-pim-community/identifier-generator lib:build",
"packages:build": "yarn dsm:build && yarn shared:build && yarn structure:build && yarn measurement:build && yarn catalog-volume-monitoring:build && yarn category:build && yarn config:build && yarn process-tracker:build && yarn import-export:build && yarn catalogs:build && yarn identifier-generator:build",
"test:e2e:open": "cypress open",
"test:e2e:run": "cypress run"
},
"repository": {
"type": "git",
"url": "https://github.com/akeneo/pim-community-dev.git"
},
"license": "OSL-3.0",
"bugs": {
"url": "https://github.com/akeneo/pim-community-dev/issues"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.10.4",
"@testing-library/cypress": "^7.0.4",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.8.3",
"@types/backbone": "1.4.8",
"@types/diff": "^5.0.0",
"@types/jest": "^26.0.22",
"@types/jquery": "^3.3.31",
"@types/lodash": "^4.14.145",
"@types/luxon": "^1.26.2",
"@types/node": "11.9.5",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/react-redux": "^7.1.0",
"@types/react-router-dom": "^5.1.0",
"@types/react-test-renderer": "^16.9.3",
"@types/styled-components": "^5.1.1",
"@types/underscore": "^1.9.3",
"@types/victory": "^33.0.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.1.0",
"babel-minify": "0.5.0",
"bundle-loader": "0.5.6",
"colors": "1.3.3",
"cucumber": "4.0.0",
"cucumber-html-reporter": "5.0.0",
"cucumber-junit": "^1.7.1",
"cypress": "^6.6.0",
"deepmerge": "^4.2.2",
"dependency-cruiser": "^11.11.0",
"eslint": "^6.5.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-testing-library": "^3.9.2",
"exports-loader": "0.7.0",
"expose-loader": "^4.0.0",
"extra-watch-webpack-plugin": "^1.0.3",
"file-loader": "^4.2.0",
"glob": "7.1.3",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "3.2.0",
"imports-loader": "^4.0.0",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"jest-watch-typeahead": "^0.6.5",
"loader-utils": "1.2.3",
"mutationobserver-shim": "^0.3.5",
"prettier": "^2.1.1",
"raw-loader": "1.0.0",
"react-test-renderer": "^16.8.0",
"read-pkg": "4.0.1",
"redux-devtools-extension": "^2.13.2",
"text-loader": "0.0.1",
"thread-loader": "^2.1.2",
"ts-jest": "^26.4.0",
"ts-loader": "5.3.3",
"typescript": "^4.0.3",
"typescript-plugin-styled-components": "^1.4.4",
"webpack": "^5.75.0",
"webpack-cleanup-plugin": "0.5.1",
"webpack-cli": "^5.0.0",
"webpack-livereload-plugin": "2.2.0",
"write-file-webpack-plugin": "4.5.0",
"yamljs": "0.3.0"
},
"dependencies": {
"@types/react-query": "^1.2.9",
"ajv": "^6.10.2",
"akeneo-design-system": "link:front-packages/akeneo-design-system",
"babel-polyfill": "6.26.0",
"backbone": "0.9.10",
"css-loader": "^3.3.0",
"dep-diff": "1.0.1",
"diff": "^5.0.0",
"formik": "^2.0.6",
"jquery": "^3.6.0",
"json-schema-ref-parser": "^7.1.2",
"json-schema-to-typescript": "^7.1.0",
"less": "^3.9.0",
"lodash": "^4.17.0",
"luxon": "^1.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^5.2.0",
"react-markdown": "^5.0.3",
"react-query": "^3.39.1",
"react-redux": "^7.1.0",
"react-router-dom": "^5.1.0",
"reakit": "^1.0.0-rc.0",
"redux": "^4.0.0",
"set-value": "~4.0",
"style-loader": "^1.0.1",
"styled-components": "^5.1.1",
"underscore": "1.12.1",
"victory": "^33.1.6"
},
"private": true,
"workspaces": [
"components/catalogs/mock",
"components/identifier-generator/front",
"front-packages/shared",
"src/Akeneo/Category/front",
"src/Akeneo/Connectivity/Connection/front",
"src/Akeneo/Connectivity/Connection/workspaces/permission-form",
"src/Akeneo/Pim/Automation/DataQualityInsights/front",
"src/Akeneo/Pim/Enrichment/Bundle/Resources/workspaces/enrichment",
"src/Akeneo/Pim/Structure/Bundle/Resources/workspaces/settings-ui",
"src/Akeneo/Pim/Structure/front",
"src/Akeneo/Platform/Bundle/CatalogVolumeMonitoringBundle/front",
"src/Akeneo/Platform/Bundle/CommunicationChannelBundle/front",
"src/Akeneo/Platform/Bundle/ImportExportBundle/front",
"src/Akeneo/Platform/Bundle/UIBundle/Resources/workspaces/activity",
"src/Akeneo/Platform/Bundle/UIBundle/Resources/workspaces/legacy-bridge",
"src/Akeneo/Platform/Bundle/UIBundle/Resources/workspaces/product",
"src/Akeneo/Platform/Bundle/UIBundle/Resources/workspaces/system",
"src/Akeneo/Platform/Job/front/process-tracker",
"src/Akeneo/Tool/Bundle/MeasureBundle/front",
"src/Akeneo/UserManagement/Bundle/Resources/workspaces/user-ui",
"src/Oro/Bundle/ConfigBundle/front"
]
}