forked from magento/magento2-page-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.4 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
{
"name": "@magento/module-page-builder",
"version": "100.0.0-dev",
"description": "PageBuilder module",
"scripts": {
"test:static": "tslint --project tsconfig.json",
"test:static:log": "set -o pipefail; npm run test:static | tee tslint-errors.txt",
"ts:errors": "tsc --noEmit",
"test:errors:log": "set -o pipefail; npm run ts:errors | tee tsc-errors.txt",
"ts:errors:watch": "npm run ts:errors -- -watch",
"ts:lint": "tslint --fix --project .",
"ts:defs": "node ./dev/dts-generator.js",
"ts:build": "babel app/code/Magento/*/view/adminhtml/web/ts/js/ --out-dir app/code/Magento/*/view/adminhtml/web/js/ --extensions '.ts,.tsx' --source-maps",
"ts:watch": "npm run ts:build -- --watch",
"stylelint": "stylelint '**/*.css' '**/*.less'",
"start": "concurrently -n 'compiler,errors' -c 'green,red' 'npm run ts:watch' 'npm run ts:errors:watch'"
},
"repository": {
"type": "git",
"url": "https://github.com/magento/magento2-page-builder.git"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-modules-amd": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/types": "^7.12.11",
"@comandeer/babel-plugin-banner": "^4.1.0",
"@types/csso": "^3.5.1",
"@types/html2canvas": "0.0.35",
"@types/jquery": "1.10.27",
"@types/jqueryui": "^1.12.13",
"@types/knockout": "^3.4.69",
"@types/magento2": "git+https://github.com/magento/ts-types.git",
"@types/object-path": "^0.11.0",
"@types/requirejs": "^2.1.32",
"@types/slick-carousel": "^1.6.34",
"@types/tinycolor": "^1.1.27",
"@types/tinymce": "^4.6.0",
"@types/underscore": "^1.10.24",
"concurrently": "^5.3.0",
"dts-generator": "^3.0.0",
"prettier": "^1.19.1",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^3.1.1",
"tslint": "^5.20.1",
"typescript": "^3.9.7"
},
"author": "Magento, Inc.",
"license": "SEE LICENSE IN LICENSE_EE.txt",
"dependencies": {
"@babel/polyfill": "^7.12.1"
}
}