-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "space_empires_4x",
"description": "A Space Empires Production Sheet",
"version": "2.0.0",
"author": "Quique Porta <quiqueporta@gmail.com>, Scott Lewis <sigmazero13@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve",
"build": "cross-env NODE_ENV=production webpack --progress",
"start": "node server.js"
},
"dependencies": {
"bootstrap-vue": "^2.18.1",
"serve-static": "^1.13.2",
"vue": "^2.6.12",
"vuejs-dialog": "^0.9.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^5.0.0",
"file-loader": "^1.1.4",
"html-loader": "^1.3.2",
"vue-loader": "^15.9.4",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.0.0-rc.6",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"yamljs": "^0.3.0"
},
"engines": {
"node": "12.x"
}
}