forked from christian-bromann/devtools-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.45 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
{
"name": "devtools-backend",
"author": "Christian Bromann <[email protected]>",
"description": "A Node.JS implementation of the devtools backend for debugging arbitrary web platforms",
"version": "0.0.0",
"main": "./build/index.js",
"directories": {
"lib": "lib"
},
"bin": {},
"keywords": [
"chrome",
"chromium",
"devtools",
"remote",
"debugging"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:christian-bromann/devtools-backend.git"
},
"bugs": {
"url": "https://github.com/christian-bromann/devtools-backend/issues"
},
"engines": {
"node": ">=7.4.0",
"npm": ">=4.0.5"
},
"scripts": {
"aws:login": "eval $(aws --profile default ecr get-login --region eu-west-1)",
"build": "run-s build:*",
"build:driver": "run-s clean compile copy webpack",
"clean": "rimraf -rf ./build",
"compile": "babel lib/ -d build/ --ignore lib/frontend/",
"copy": "cpx ./views ./build",
"dev": "run-p start:dev:*",
"docker:build": "docker build -t devtools-backend .",
"docker:tag": "docker tag devtools-backend:latest 268024020396.dkr.ecr.eu-west-1.amazonaws.com/devtools-backend:latest",
"docker:push": "docker push 268024020396.dkr.ecr.eu-west-1.amazonaws.com/devtools-backend:latest",
"eslint": "eslint ./lib/*.js",
"release": "run-s aws:login docker:build docker:tag docker:push",
"start": "npm run start:server",
"start:dev": "NODE_ENV=development nodemon -e html,js,json,yaml --watch build --ignore build/scripts/",
"start:server": "node build/index.js",
"start:dev:babel": "npm run compile -- --watch",
"start:dev:webpack": "npm run webpack -- --watch",
"test": "run-s test:*",
"test:eslint": "eslint lib",
"test:unit": "jest",
"webpack": "webpack --progress --colors --config .config/webpack.config"
},
"dependencies": {
"babel-runtime": "~6.23.0",
"body-parser": "~1.17.0",
"cheerio": "^1.0.0-rc.2",
"chrome-devtools-frontend": "~1.0.542391",
"cookie-parser": "~1.4.3",
"core-js": "^2.4.1",
"cors": "2.8.3",
"cpx": "^1.5.0",
"css": "2.2.1",
"ejs": "2.5.6",
"express": "~4.15.0",
"is-online": "7.0.0",
"js-cookie": "~2.1.3",
"json-stringify-safe": "~5.0.1",
"lodash.first": "^3.0.0",
"lodash.last": "^3.0.0",
"lodash.pick": "^4.4.0",
"mime-db": "1.26.0",
"mime-types": "~2.1.14",
"npmlog": "4.0.2",
"promise-polyfill": "^6.0.2",
"request": "2.81.0",
"request-promise-native": "~1.0.3",
"serve-favicon": "~2.4.1",
"socket.io": "~1.7.2",
"uuid": "~3.0.1",
"ws": "~2.2.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.3",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^3.14.1",
"eslint-config-standard": "^7.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.1",
"rimraf": "^2.6.2",
"webpack": "^2.2.1",
"webpack-combine-loaders": "^2.0.3",
"webpack-dev-server": "^2.2.1",
"webpack-merge": "^3.0.0",
"xhr": "2.4.0"
}
}