-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 880 Bytes
/
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
{
"name": "vue_trivia",
"version": "1.0.0",
"description": "A trivia game in Vue",
"main": "index.js",
"scripts": {
"start": "parcel ./src/index.html -d serve",
"prebuild": "rimraf dist",
"build": "parcel build ./src/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andybflynn/vue_trivia.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andybflynn/vue_trivia/issues"
},
"homepage": "https://github.com/andybflynn/vue_trivia#readme",
"dependencies": {
"axios": "^0.19.0",
"vue": "^2.6.10",
"vue-hot-reload-api": "^2.3.4",
"vuex": "^3.1.1"
},
"devDependencies": {
"@vue/component-compiler-utils": "^3.0.0",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.0",
"sass": "^1.23.1",
"vue-template-compiler": "^2.6.10"
}
}