-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "misato-frontend",
"private": true,
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint src --ext js,vue",
"lint:fix": "eslint src --ext js,vue --fix",
"build": "webpack",
"build:watch": "webpack --watch",
"build:prod": "NODE_ENV=production webpack",
"start": "webpack serve --open"
},
"dependencies": {
"buefy": "^0.9.11",
"bulma": "^0.9.0",
"emojis-list": "^3.0.0",
"twemoji": "^13.1.0",
"vue": "^2.6.11",
"vue-router": "^3.3.4",
"vuex": "^3.5.1"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"html-webpack-plugin": "^5.3.1",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}