-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 940 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 940 Bytes
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
{
"name": "gamification",
"version": "1.0.0",
"description": "",
"scripts": {
"watch": "webpack --config webpack.dev.js --progress --color --watch",
"build": "webpack --config webpack.prod.js --mode production",
"lint": "eslint --fix \"./src/main/webapp/vue-app/**\"",
"eslint-check": "eslint \"./src/main/webapp/vue-app/**\""
},
"author": "Meeds.io",
"license": "LGPL",
"devDependencies": {
"babel-loader": "^8.3.0",
"css-loader": "^0.28.11",
"eslint": "^8.12.0",
"eslint-config-meedsio": "^1.0.5",
"eslint-plugin-vue": "^8.6.0",
"eslint-plugin-vuejs-accessibility": "^2.1.0",
"eslint-webpack-plugin": "^3.1.1",
"vue": "^2.6.14",
"vue-loader": "^15.10.1",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^0.30.0",
"bootstrap-vue": "^2.0.0-rc.8"
}
}