-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 KB
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
{
"name": "Program-Wars",
"version": "3.0.0",
"description": "An educational card game for teaching programming concepts.",
"author": "John Anvik <johnanvik@uleth.ca>",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"ci-coverage": "vue-cli-service test:unit && npx coveralls-next < coverage/lcov.info",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"lint:style": "stylelint '**/*.{vue,css,html}'",
"docs": "jsdoc -c jsdoc.config.json"
},
"overrides": {
"cross-spawn": "^7.0.6",
"postcss": "^8.4.31",
"webpack-dev-server": "^5.2.1",
"yorkie": {
"execa": "^5.1.1"
}
},
"dependencies": {
"core-js": "^3.47.0",
"easytimer.js": "^4.6.0",
"loglevel": "^1.9.2",
"mitt": "^3.0.1",
"vue": "^3.5.26",
"vue-markdown-render": "^2.3.0",
"vue-router": "^4.6.4",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@vue/cli-plugin-babel": "~5.0.9",
"@vue/cli-plugin-eslint": "^5.0.9",
"@vue/cli-plugin-router": "~5.0.9",
"@vue/cli-plugin-unit-jest": "~5.0.9",
"@vue/cli-plugin-vuex": "~5.0.9",
"@vue/cli-service": "~5.0.9",
"@vue/test-utils": "2.4.6",
"@vue/vue3-jest": "^29.2.6",
"coveralls-next": "^6.0.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"jsdoc": "^4.0.5",
"jsdoc-vuejs": "^4.0.0",
"minami": "^1.2.3",
"postcss-html": "^1.8.0",
"raw-loader": "^4.0.2",
"stylelint": "^16.26.1",
"stylelint-config-recommended": "^17.0.0"
}
}