forked from akeneo/pim-community-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
147 lines (147 loc) · 5.81 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
{
"name": "pim-community-dev",
"version": "3.2.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-watch": "yarn requirements && yarn generate-models && NODE_PATH=node_modules webpack --progress --config $npm_package_config_source/webpack.config.js --watch --strict",
"prettier": "prettier --config .prettierrc.json --parser typescript --write \"./src/**/*.ts\";",
"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",
"lint-fix": "yarn run lint --fix",
"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",
"less-watch": "SHELL=/bin/bash chokidar --verbose \"{$npm_package_config_source/src,src,public/bundles}/**/*.{less,css}\" -c \"yarn run less --dev\"",
"update-extensions": "node $npm_package_config_source/frontend/build/update-extensions.js",
"generate-models": "yarn --cwd=node_modules/@akeneo-pim-community/communication-channel generate-models"
},
"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",
"@testing-library/dom": "^6.3.0",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.3",
"@testing-library/react-hooks": "^3.1.0",
"@testing-library/user-event": "^7.1.2",
"@types/backbone": "^1.3.42",
"@types/enzyme": "^3.9.0",
"@types/jest": "^24.0.9",
"@types/jquery": "^3.3.31",
"@types/lodash": "^4.14.145",
"@types/node": "11.9.5",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@types/react-redux": "^7.1.0",
"@types/react-router-dom": "^5.1.0",
"@types/react-test-renderer": "^16.8.0",
"@types/styled-components": "^4.1.18",
"@types/underscore": "^1.9.3",
"@types/victory": "^33.0.1",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"babel-eslint": "^10.0.1",
"babel-loader": "8.0.5",
"babel-minify": "0.5.0",
"bundle-loader": "0.5.6",
"chokidar-cli": "^2.1.0",
"colors": "1.3.3",
"cucumber": "4.0.0",
"cucumber-html-reporter": "5.0.0",
"cucumber-junit": "^1.7.1",
"deepmerge": "^4.2.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"exports-loader": "0.7.0",
"expose-loader": "0.7.5",
"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": "0.8.0",
"jest": "^24.3.1",
"jest-fetch-mock": "^3.0.3",
"loader-utils": "1.2.3",
"mutationobserver-shim": "^0.3.5",
"prettier": "^1.16.4",
"puppeteer": "^1.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": "24.0.0",
"ts-loader": "5.3.3",
"typescript": "^3.7.2",
"typescript-plugin-styled-components": "^1.4.4",
"webpack": "4.29.6",
"webpack-cleanup-plugin": "0.5.1",
"webpack-cli": "^3.2.3",
"webpack-livereload-plugin": "2.2.0",
"webpack-shell-plugin": "^0.5.0",
"write-file-webpack-plugin": "4.5.0",
"yamljs": "0.3.0"
},
"dependencies": {
"ajv": "^6.10.2",
"babel-polyfill": "6.26.0",
"backbone": "0.9.10",
"css-loader": "^3.3.0",
"dep-diff": "1.0.1",
"dropzone": "4.0.1",
"formik": "^2.0.6",
"jquery": "3.4.0",
"json-schema-ref-parser": "^7.1.2",
"json-schema-to-typescript": "^7.1.0",
"less": "^3.9.0",
"lodash": "^4.17.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-hook-form": "^5.2.0",
"react-markdown": "^4.3.1",
"react-redux": "^7.1.0",
"react-router-dom": "^5.1.0",
"reakit": "^1.0.0-rc.0",
"redux": "^4.0.0",
"style-loader": "^1.0.1",
"styled-components": "^4.3.2",
"summernote": "0.6.16",
"underscore": "1.8.3",
"victory": "^33.1.6"
},
"resolutions": {
"jest/**/ip-regex": "2.1.0"
},
"private": true,
"workspaces": [
"src/Akeneo/Connectivity/Connection/front",
"src/Akeneo/Platform/Bundle/UIBundle/Resources/workspaces/legacy-bridge",
"src/Akeneo/Platform/Bundle/UIBundle/Resources/workspaces/shared",
"src/Akeneo/Platform/Bundle/CommunicationChannelBundle/front",
"src/Akeneo/Pim/Automation/DataQualityInsights/front"
]
}