forked from ebshimizu/5e-loot-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.68 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "5e-loot-gen",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --skip-plugins @vue/cli-plugin-eslint"
},
"dependencies": {
"@babel/core": "^7.23.7",
"@mdi/font": "5.9.55",
"babel-loader": "^9.1.3",
"copy-to-clipboard": "^3.3.3",
"core-js": "^3.34.0",
"crypto-random-string": "3.3.1",
"eslint-config-prettier": "^9.1.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"path-browserify": "^1.0.1",
"raw-loader": "^4.0.2",
"roboto-fontface": "*",
"slugify": "^1.6.6",
"uuid": "^9.0.1",
"vue-router": "^4.2.5",
"vuetify": "^3.4.8",
"vuex": "^4.1.0",
"webfontloader": "^1.0.0",
"webpack": "^5.89.0",
"webpack-loader": "0.0.1",
"yarn": "^1.22.21"
},
"devDependencies": {
"@expo/webpack-config": "^18.1.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^8.0.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-vue": "^9.19.2",
"imports-loader": "^4.0.1",
"prettier": "^3.1.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.3",
"vue": "^2.7.16",
"vue-cli-plugin-vuetify": "~2.5.8",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.16",
"vuetify-loader": "^1.9.2",
"webpack-cli": "^5.1.4",
"webpack-plugin-vuetify": "^2.0.0-alpha.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"description": "Live site: https://ebshimizu.github.io/loot-gen/",
"main": "babel.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fredrdh/trails.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fredrdh/trails/issues"
},
"homepage": "https://github.com/fredrdh/trails#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
}