-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.67 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
{
"name": "neurorobotics-mooc-initialization",
"description": "Exercise wizard for the Neurorobotics MOOC",
"version": "1.0.1",
"private": true,
"author": "Antonel Stefano <[email protected]>",
"contributors": [
],
"license": "GPL",
"repository": {
"type": "git",
"url": "https://github.com/HBPNeurorobotics/Neurorobotics-MOOC-initialization"
},
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build_doc": "jsdoc --readme ./README.md src/main.js --destination docs"
},
"dependencies": {
"axios": "^0.18.0",
"jso": "^4.1.1",
"lodash": "^4.17.11",
"markdown-loader": "^5.0.0",
"marked": "^0.6.0",
"sweetalert2": "^7.33.1",
"uuid4": "^1.1.4",
"vue": "^2.5.22",
"vue-infinite-loading": "^2.4.3",
"vue-material": "0.8.1",
"vue-router": "^3.0.2"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"eslint": "^5.12.0",
"eslint-plugin-vue": "^5.1.0",
"html-loader": "^0.5.5",
"jsdoc": "^3.5.5",
"vue-template-compiler": "^2.5.22"
},
"babel": {
"presets": [
"@vue/app"
]
},
"eslintConfig": {
"root": true,
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-console": 0
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}