-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.49 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.49 KB
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
{
"name": "webphone-webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack.prod.config.js",
"build-lib-for-browser": "webpack --config webpack.build-lib-for-browser.js",
"build-lib-for-npm": "webpack --config webpack.build-lib-for-npm.js",
"watch": "webpack --watch --config webpack.dev.config.js",
"start": "webpack serve --port 8181 --config webpack.dev.config.js",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix"
},
"keywords": [],
"author": "huy@stringee.com",
"license": "ISC",
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.21.4",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint": "^8.37.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"prettier": "2.8.7",
"prettier-eslint": "^15.0.1",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"dependencies": {
"axios": "^1.3.4",
"stringee": "^2.9.2",
"ws": "^8.13.0"
}
}