-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 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
{
"name": "symfony-server-dump-live",
"version": "1.0.4",
"author": "Ilya Zelenko",
"main": "./dist/dump-server.js",
"types": "./dist/index",
"bin": {
"dump-server": "./dist/dump-server.js"
},
"files": [
"dist",
"src"
],
"keywords": [
"symfony",
"dump",
"server",
"live",
"debug",
"watcher",
"var",
"VarDumper",
"node",
"socket",
"html",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iliyaZelenko/symfony-server-dump-live.git"
},
"bugs": {
"url": "https://github.com/iliyaZelenko/symfony-server-dump-live/issues"
},
"homepage": "https://github.com/iliyaZelenko/symfony-server-dump-live#readme",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"start": "node ./dist",
"build": "webpack --mode none --config webpack.config.js",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@types/express": "^4.16.0",
"@types/node": "^10.12.10",
"@types/socket.io": "^2.1.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-typescript": "^1.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"nodemon": "^1.18.7",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.6",
"typescript-eslint-parser": "^21.0.1",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@types/express-serve-static-core": "^4.16.0",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"commander": "^2.19.0",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"opn": "^5.4.0",
"socket.io": "^2.2.0"
}
}