-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
84 lines (84 loc) · 3.52 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
{
"name": "browser-websocket-client",
"version": "1.3.0",
"description": "Connect to a WebSocket server to send and receive raw JSON messages.",
"license": "Apache-2.0",
"author": "Ken Siprell",
"homepage": "https://github.com/kensiprell/browser-websocket-client/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/kensiprell/browser-websocket-client.git"
},
"scripts": {
"clean:chrome": "rimraf build/development/chrome",
"clean:firefox": "rimraf build/development/firefox",
"clean:chrome:production": "rimraf build/production/chrome dist/chrome.zip",
"clean:firefox:production": "rimraf build/production/firefox dist/firefox.zip",
"clean": "rimraf build dist",
"build:chrome": "npm run clean:chrome && webpack --watch --config webpack.config.js --env=development:chrome --progress --colors",
"build:firefox": "npm run clean:firefox && webpack --watch --config webpack.config.js --env=development:firefox --progress --colors",
"build": "concurrently --kill-others \"npm:build:chrome\" \"npm:build:firefox\"",
"build:chrome:production": "npm run clean:chrome:production && webpack --config webpack.config.js --env=production:chrome --progress --colors",
"build:firefox:production": "npm run clean:firefox:production && webpack --config webpack.config.js --env=production:firefox --progress --colors",
"build:production": "concurrently --kill-others \"npm:build:chrome:production\" \"npm:build:firefox:production\"",
"lint": "eslint -c .eslintrc.json src/**/*.js",
"cypress": "cypress open --project ./src/test",
"serve": "serve -l 3000",
"test": "concurrently --kill-others \"npm:build:chrome\" \"npm:serve\" \"npm:cypress\"",
"zip:chrome": "npm run build:chrome:production && mkdirp ./dist && zip -jr dist/chrome.zip build/production/chrome/*",
"zip:firefox": "npm run build:firefox:production && mkdirp ./dist && zip -jr dist/firefox.zip build/production/firefox/*",
"zip:all": "npm run zip:chrome && npm run zip:firefox"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"@fortawesome/fontawesome": "1.1.8",
"@fortawesome/fontawesome-free-regular": "5.0.13",
"@fortawesome/fontawesome-free-solid": "5.0.13",
"bootstrap": "4.4.1",
"jquery": "3.4.1",
"popper.js": "1.16.1"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/preset-env": "7.8.4",
"@cypress/webpack-preprocessor": "4.1.2",
"@types/chrome": "0.0.96",
"@types/node": "13.7.4",
"autoprefixer": "9.7.4",
"babel-loader": "8.0.6",
"concurrently": "5.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "3.4.2",
"cypress": "4.0.2",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.0",
"eslint-config-standard-preact": "1.1.6",
"eslint-plugin-chai-friendly": "0.5.0",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"file-loader": "5.1.0",
"generate-json-webpack-plugin": "0.3.1",
"html-loader": "0.5.5",
"less": "3.11.1",
"less-loader": "5.0.0",
"mkdirp": "1.0.3",
"node-sass": "^4.13.1",
"postcss-loader": "3.0.0",
"precss": "4.0.0",
"rimraf": "3.0.2",
"sass-loader": "8.0.2",
"serve": "11.3.0",
"style-loader": "1.1.3",
"url-loader": "3.0.0",
"webpack": "4.41.6",
"webpack-cli": "3.3.11",
"webpack-merge": "4.2.2"
}
}