-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 3.65 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@b6k/slang-editor",
"version": "0.0.18",
"description": "Web component for Slang, a visual programming language.",
"main": "index.js",
"types": "index.d.ts",
"source": "index.ts",
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js --color --env apiUrl=http://localhost:5149",
"build": "webpack --config webpack/webpack.build.js --color --env apiUrl=http://localhost:5149 baseHref=/app/",
"test": "jest",
"package": "webpack --config webpack/webpack.package.js && grunt",
"link": "npm run package; cd dist/; npm link",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint --fix -p tsconfig.json -c tslint.json -t verbose",
"validate:deps": "dependency-cruise --exclude \"^node_modules\" --validate .dependency-cruiser.json ./src/slang",
"visualize:deps": "dependency-cruise --exclude \"^node_modules\" --output-type dot -- ./src/slang | dot -T svg > dependencygraph.svg",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bitspark/slang-editor.git"
},
"keywords": [
"slang",
"ide",
"frontend",
"visual programming"
],
"author": "Bitspark GmbH",
"license": "Apache License 2.0",
"contributors": [
"Julian Matschinske",
"Taleh Didover",
"Kai König"
],
"bugs": {
"url": "https://github.com/Bitspark/slang-editor/issues"
},
"browserslist": [
"last 2 version",
"> 2%"
],
"dependencies": {
"backbone": "^1.3.3",
"base-href-webpack-plugin": "^3.0.1",
"bulma": "^0.7.4",
"dagre": "^0.8.2",
"graphlib": "^2.1.5",
"html-webpack-plugin": "^4.5.2",
"jointjs": "github:Bitspark/joint",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"mithril": "^1.1.6",
"rxjs": "^6.3.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@fortawesome/fontawesome-free": "^5.5.0",
"@types/backbone": "^1.3.43",
"@types/jest": "^26.0.0",
"@types/jquery": "^3.3.22",
"@types/lodash": "^4.14.117",
"@types/mithril": "^2.0.2",
"@babel/polyfill": "^7.0.0",
"@types/plotly.js": "^1.41.0",
"@types/uuid": "^7.0.2",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^3.0.0",
"copy-pkg-json-webpack-plugin": "0.0.39",
"css-loader": "^5.0.0",
"css-to-ts": "^1.0.1",
"dependency-cruiser": "^9.0.0",
"eslint": "^7.0.0",
"eslint-loader": "^4.0.0",
"file-loader": "^6.0.0",
"grunt": "^1.0.4",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-css-to-js": "^0.1.9",
"grunt-csso": "^2.2.4",
"grunt-postcss": "^0.9.0",
"grunt-run": "^0.8.1",
"grunt-sass": "^3.0.2",
"grunt-sass-tilde-importer": "^1.0.2",
"grunt-shell": "^3.0.1",
"grunt-string-replace": "^1.3.1",
"grunt-ts": "^6.0.0-beta.22",
"jest": "^25.2.3",
"jest-fetch-mock": "^3.0.0",
"jest-websocket-mock": "^2.0.0",
"load-grunt-tasks": "^5.1.0",
"mini-css-extract-plugin": "^1.0.0",
"mock-socket": "^9.0.2",
"node-sass": "^5.0.0",
"null-loader": "^4.0.0",
"pixrem": "^5.0.0",
"preload-webpack-plugin": "^3.0.0-beta.3",
"sass-loader": "^10.0.1",
"to-string-loader": "^1.1.5",
"ts-jest": "^25.2.1",
"ts-loader": "^8.0.0",
"tslint": "^5.14.0",
"tslint-consistent-codestyle": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.3",
"webpack": "^4.29.6",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^5.0.7"
}
}