This repository has been archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.81 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
{
"name": "thedungeon-web",
"version": "0.1.0",
"description": "The Dungeon Web",
"main": "webpack.config.js",
"scripts": {
"build": "webpack",
"test": "mocha -r ts-node/register **/*.spec.ts",
"test:dev": "mocha -r ts-node/register **/*.spec.ts --watch --watch-extensions ts",
"dev": "webpack-dev-server --hot --host 0.0.0.0 --progress --mode development --watch-poll",
"prod": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/44r0n/thedungeon.git"
},
"keywords": [
"RyF"
],
"author": "Aarón Sánchez",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/44r0n/thedungeon/issues"
},
"homepage": "https://github.com/44r0n/thedungeon#readme",
"dependencies": {
"buefy": "^0.8.6",
"bulma": "^0.8.0",
"vue": "^2.6.10",
"vue-i18n": "^8.15.1",
"vue-router": "^3.1.3"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-regular-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/vue-fontawesome": "^0.1.8",
"@types/chai": "^4.2.4",
"@types/lodash": "^4.14.146",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.0",
"chai": "^4.2.0",
"css-loader": "^3.2.0",
"lodash": "^4.17.15",
"mocha": "^6.2.2",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"sinon": "^7.5.0",
"ts-loader": "^6.2.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.2",
"vue-class-component": "^7.1.0",
"vue-loader": "^15.7.2",
"vue-property-decorator": "^8.3.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}