-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 922 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 922 Bytes
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
{
"name": "angular-editor",
"version": "0.0.2",
"description": "sistema para montagem de interfaces via browser",
"main": "main.js",
"repository": "https://github.com/mycloudlab/angular-editor",
"author": "Carlos Alberto <euprogramador@gmail.com>",
"license": "APACHE-2.0",
"bin": {
"angular-editor": "bin/angular-editor.js"
},
"scripts": {
"start": "webpack-dev-server",
"build": "rm dist -rf && webpack",
"build:prod": "rm dist -rf && MODE=production webpack",
"exec": "bin/angular-editor.js"
},
"dependencies": {
"@angular/cli": "^6.0.5",
"commander": "^2.15.1",
"express": "^4.16.3",
"grapesjs": "^0.14.15"
},
"devDependencies": {
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.21.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
}
}