-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "point-buy-calculator",
"description": "A point buy calculator for dnd 5e.",
"version": "1.0.0",
"author": "jml6487@gmail.com",
"license": "MIT",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production && npm run clean && webpack -p --config config/webpack.config.prod.js --hide-modules",
"clean": "rimraf dist",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot --config config/webpack.config.dev.js",
"start": "node server/index.js"
},
"dependencies": {
"axios": "^0.17.1",
"express": "^4.16.2",
"vue": "^2.5.11",
"vue-router": "^3.0.1",
"vuelidate": "^0.6.1",
"vuetify": "^1.0.17",
"vuex": "^3.0.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"buble": "^0.18.0",
"buble-loader": "^0.4.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.4",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^4.2.0",
"rimraf": "^2.6.2",
"vue-loader": "^13.0.5",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.2"
},
"main": "server/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jlyon87/point-buy-calculator.git"
},
"keywords": [
"dnd",
"5e",
"point",
"buy",
"calculator"
],
"bugs": {
"url": "https://github.com/jlyon87/point-buy-calculator/issues"
},
"homepage": "https://github.com/jlyon87/point-buy-calculator#readme"
}