forked from SibylLab/Program-Wars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "Program-Wars",
"version": "3.0.0",
"description": "An educational card game for teaching programming concepts.",
"author": "John Anvik <[email protected]>",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"ci-coverage": "vue-cli-service test:unit && cat coverage/lcov.info | coveralls",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"lint:style": "stylelint '**/*.{vue,css,html}'",
"docs": "jsdoc -c jsdoc.config.json"
},
"dependencies": {
"core-js": "^3.6.4",
"easytimer.js": "^2.2.3",
"loglevel": "^1.6.8",
"raw-loader": "^4.0.1",
"vue": "^2.6.11",
"vue-markdown": "^2.2.4",
"vue-router": "^3.4.3",
"vuex": "^3.5.1"
},
"devDependencies": {
"@vue/cli": "^4.5.3",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-plugin-router": "~4.3.0",
"@vue/cli-plugin-unit-jest": "~4.3.0",
"@vue/cli-plugin-vuex": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"easytimer": "^1.1.1",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"jsdoc": "^3.6.5",
"jsdoc-vuejs": "^3.0.8",
"minami": "^1.2.3",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"vue-template-compiler": "^2.6.11"
}
}