-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.41 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.41 KB
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
{
"name": "@zef-dev/convoworks-editor",
"version": "0.26.0",
"description": "Editor GUI for the Convoworks framework",
"author": "zef-dev",
"license": "MIT",
"files": [
".yalc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zef-dev/convoworks-editor.git"
},
"bugs": {
"url": "https://github.com/zef-dev/convoworks-editor/issues"
},
"homepage": "https://github.com/zef-dev/convoworks-editor#readme",
"keywords": [
"convoworks"
],
"main": "dist/convoworks.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/karma/bin/karma start",
"build": "webpack --mode production",
"watch": "webpack --mode production --watch --progress",
"prepare": "install-peers",
"start": "webpack-dev-server --open --mode development"
},
"peerDependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"angular": "^1.8.0",
"angular-animate": "1.8.*",
"angular-cookies": "1.8.*",
"angular-sanitize": "1.8.*",
"bootstrap": "^4.6.0",
"jquery": "^1.12.1",
"jquery-ui-dist": "^1.12.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.28",
"@zef-dev/convoworks-intent-model-editor": "^1.7.0",
"angular-bootstrap-contextmenu": "^1.2.1",
"angular-local-storage": "~0.2.7",
"angular-ui-sortable": "^0.19.0",
"json-formatter-js": "^2.3.4",
"ng-file-upload": "^12.2.13",
"ui-bootstrap4": "^3.0.7"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.12.5",
"@babel/runtime-corejs2": "^7.12.5",
"autoprefixer-loader": "^3.2.0",
"babel-loader": "^8.1.0",
"babel-plugin-angularjs-annotate": "^0.10.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^0.28.10",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.3.0",
"install-peers-cli": "^2.2.0",
"node-sass": "^4.14.1",
"rimraf": "^2.6.2",
"sass-loader": "^9.0.1",
"style-loader": "^0.20.2",
"svg-inline-loader": "^0.8.2",
"url-loader": "^1.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.2"
}
}