-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.34 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
{
"version": "1.0.0",
"name": "callflow-visualizer",
"description": "Flow visualizer of call structures",
"author": "Koray Poyraz",
"email": "",
"homepage": "https://github.com/ciCciC/callflow-visualizer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.8.3",
"@koa/cors": "^2.2.3",
"@open-wc/eslint-config": "^4.0.1",
"@types/jasmine": "^3.5.0",
"@types/lodash": "^4.14.156",
"@types/moment-timezone": "^0.5.12",
"@types/redux-logger": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "latest",
"acorn": "^7.2.0",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"chokidar": "latest",
"concurrently": "^5.0.2",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"css-loader": "^3.4.0",
"deepmerge": "latest",
"es-dev-server": "^2.1.0",
"eslint": "latest",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-webpack-plugin": "^2.5.4",
"express": "^4.17.1",
"git-rev-sync": "^2.0.0",
"glob": "latest",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.5.0",
"koa": "^2.11.0",
"koa-proxies": "^0.9.0",
"koa-router": "^7.4.0",
"nodemon": "^2.0.12",
"npm-run-all": "4.1.5",
"open": "^7.0.0",
"pwa-helpers": "^0.9.1",
"stylelint": "^13.13.1",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"ts-loader": "^6.2.1",
"typescript": "^3.9.7",
"typescript-lit-html-plugin": "^0.9.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.5.0",
"axios": "^0.21.1",
"immer": "^9.0.5",
"lit-element": "^2.5.1",
"lodash": "^4.17.20",
"mathjs": "^11.5.1",
"regenerator-runtime": "^0.13.3",
"resize-observer-polyfill": "^1.5.1",
"vis-data": "^7.1.2",
"vis-network": "^9.0.4"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "node test/clean.js",
"lint": "eslint src --ext .ts",
"prerelease": "npm version prerelease --reid=SNAPSHOT",
"release": "npm version",
"webpack-run": "webpack --config test/webpack.dev.config.js --progress --watch --mode development",
"start-static-server": "node test/demo/static-server.js",
"start": "run-p clean webpack-run start-static-server"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ciCciC/callflow-visualizer.git"
}
}