-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "chat-application",
"version": "1.0.0",
"main": "index.js",
"author": "cheezenaan",
"license": "MIT",
"devDependencies": {
"@types/webpack": "^4.4.11",
"@types/webpack-serve": "^2.0.0",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-typescript": "^0.12.0",
"eslint-plugin-vue": "^4.7.1",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.14.2",
"ts-loader": "^5.0.0",
"typescript": "^3.0.3",
"typescript-eslint-parser": "^18.0.0",
"vue-loader": "^15.4.1",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-serve": "^2.0.2"
},
"scripts": {
"build": "webpack --config config/webpack.config.js",
"format": "prettier src/**/* --write",
"lint": "eslint src/ --ext js,ts,.vue ",
"serve": "webpack-serve --config config/serve.config.js",
"watch": "webpack --config config/webpack.config.js --watch"
},
"dependencies": {
"vue": "^2.5.17"
}
}