-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 4.27 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
{
"name": "pim-community-standard",
"version": "3.2.0",
"description": "The \"Akeneo Community Standard Edition\" distribution",
"homepage": "https://www.akeneo.com/",
"config": {
"source": "vendor/akeneo/pim-community-dev",
"check": "vendor/akeneo/pim-community-dev/frontend/build/check-dependencies.js",
"styles": "vendor/akeneo/pim-community-dev/frontend/build/compile-less.js"
},
"scripts": {
"requirements": "node $npm_package_config_source/frontend/build/check-requirements.js",
"sync": "NODE_PATH=node_modules node $npm_package_config_check --source=$npm_package_config_source",
"webpack": "yarn requirements && NODE_PATH=node_modules webpack --config $npm_package_config_source/webpack.config.js --env=prod",
"webpack-dev": "yarn requirements && NODE_PATH=node_modules webpack --config $npm_package_config_source/webpack.config.js",
"webpack-watch": "yarn requirements && NODE_PATH=node_modules webpack --progress --config $npm_package_config_source/webpack.config.js --watch",
"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": "webpack --config webpack-test.config.js",
"lint": "node ./node_modules/eslint/bin/eslint 'src/**/*.js' --ignore-path .eslintignore --quiet",
"lint-fix": "node ./node_modules/eslint/bin/eslint 'src/**/*.js' --ignore-path .eslintignore --quiet --fix",
"unit": "jest --no-cache --config tests/front/unit/jest/unit.jest.js",
"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:web/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,web/bundles}/**/*.{less,css}\" -c \"yarn run less --dev\"",
"update-extensions": "node $npm_package_config_source/frontend/build/update-extensions.js"
},
"repository": {
"type": "git",
"url": "https://github.com/akeneo/pim-community-standard.git"
},
"license": "OSL-3.0",
"bugs": {
"url": "https://github.com/akeneo/pim-community-dev/issues"
},
"devDependencies": {
"@types/enzyme": "^3.9.0",
"@types/jest": "^24.0.9",
"cucumber": "4.0.0",
"cucumber-html-reporter": "5.0.0",
"cucumber-junit": "^1.7.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"glob": "7.1.3",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "3.2.0",
"jest": "^24.3.1",
"prettier": "^1.16.4",
"puppeteer": "1.1.1",
"read-pkg": "4.0.1",
"ts-jest": "24.0.0"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@types/backbone": "^1.3.42",
"@types/node": "11.9.5",
"JSON2": "0.1.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"babel-minify": "0.5.0",
"babel-polyfill": "6.26.0",
"backbone": "0.9.10",
"bundle-loader": "0.5.6",
"chokidar-cli": "^1.2.2",
"colors": "1.3.3",
"deepmerge": "3.2.0",
"dropzone": "4.0.1",
"dep-diff": "1.0.1",
"eslint": "6.0.1",
"exports-loader": "0.7.0",
"expose-loader": "0.7.5",
"extra-watch-webpack-plugin": "^1.0.3",
"imports-loader": "0.8.0",
"jquery": "3.4.0",
"less": "^3.9.0",
"loader-utils": "1.2.3",
"lodash": "4.17.14",
"merge-objects": "1.0.5",
"raw-loader": "1.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"summernote": "0.6.16",
"text-loader": "0.0.1",
"ts-loader": "5.3.3",
"typescript": "3.3.3333",
"underscore": "1.8.3",
"webpack": "4.29.6",
"webpack-cli": "^3.2.3",
"webpack-cleanup-plugin": "0.5.1",
"webpack-livereload-plugin": "2.2.0",
"webpack-shell-plugin": "^0.5.0",
"thread-loader": "^2.1.2",
"write-file-webpack-plugin": "4.5.0",
"yamljs": "0.3.0"
},
"resolutions": {
"jest/**/ip-regex": "2.1.0"
}
}