forked from akeneo/pim-community-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.14 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
{
"name": "pim-community-dev",
"description": "Akeneo PIM Application",
"homepage": "http://www.akeneo.com",
"scripts": {
"webpack": "webpack --config webpack.config.js --env=prod",
"webpack-dev": "webpack --config webpack.config.js",
"webpack-watch": "webpack --progress --config 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 ./webpack/test/acceptance/run-steps.js -r ./tests/front/acceptance/cucumber",
"acceptance-html-report": "yarn run acceptance ./tests/features/ -f json:web/test_dist/acceptance-js.json && node webpack/test/acceptance/generate-html-report.js"
},
"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": {
"@types/enzyme": "^3.1.12",
"@types/jest": "^22.2.3",
"colors": "1.1.2",
"cucumber": "4.0.0",
"cucumber-html-reporter": "4.0.1",
"cucumber-junit": "^1.7.1",
"dep-diff": "1.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"glob": "7.1.2",
"html-webpack-inline-source-plugin": "0.0.9",
"html-webpack-plugin": "2.30.1",
"jest": "^22.4.3",
"prettier": "^1.11.1",
"puppeteer": "1.1.1",
"read-pkg": "2.0.0",
"ts-jest": "^22.4.4"
},
"dependencies": {
"@types/backbone": "^1.3.42",
"@types/node": "^9.6.1",
"JSON2": "0.1.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-minify": "0.2.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.0",
"backbone": "0.9.10",
"bundle-loader": "0.5.5",
"deepmerge": "1.5.1",
"eslint": "4.5.0",
"exports-loader": "0.6.4",
"expose-loader": "0.7.3",
"html-loader": "0.5.1",
"imports-loader": "0.7.1",
"jquery": "1.11.0",
"loader-utils": "1.1.0",
"lodash": "4.17.4",
"merge-objects": "1.0.5",
"raw-loader": "0.5.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"regexp-replace-loader": "1.0.0",
"summernote": "0.6.5",
"text-loader": "0.0.1",
"ts-loader": "^3.5.0",
"typescript": "^2.7.2",
"underscore": "1.8.3",
"webpack": "3.5.5",
"webpack-cleanup-plugin": "0.5.1",
"webpack-dev-server": "2.7.1",
"webpack-livereload-plugin": "0.11.0",
"write-file-webpack-plugin": "4.1.0",
"yamljs": "0.3.0"
}
}