-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
66 lines (66 loc) · 1.66 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
{
"name": "grapesjs-cli",
"version": "4.1.3",
"description": "GrapesJS CLI tool for the plugin development",
"bin": {
"grapesjs-cli": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "BUILD_MODE=production webpack --config ./webpack.cli.ts",
"build:watch": "webpack --config ./webpack.cli.ts --watch",
"lint": "eslint src",
"patch": "npm version patch -m 'Bump v%s'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/GrapesJS/cli.git"
},
"keywords": [
"grapesjs",
"plugin",
"dev",
"cli"
],
"author": "Artur Arseniev",
"license": "BSD-3-Clause",
"engines": {
"node": ">=14.15.0"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.13",
"babel-loader": "^9.1.2",
"chalk": "^4.1.2",
"core-js": "^3.27.2",
"dts-bundle-generator": "^8.0.1",
"html-webpack-plugin": "^5.5.0",
"inquirer": "^8.2.5",
"listr": "^0.14.3",
"lodash.template": "^4.5.0",
"rimraf": "^4.1.2",
"spdx-license-list": "^6.6.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.12",
"@types/webpack-node-externals": "^3.0.0",
"babel-jest": "^29.7.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^7.32.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"jest": "^29.7.0",
"webpack-node-externals": "^3.0.0"
}
}