-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "clues",
"version": "1.9.0",
"description": "Note taking web app for the murder mystery game Clue",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel index.html",
"build": "npm run clean && parcel build index.html && npm run css",
"clean": "rm -rf dist .cache",
"css": "postcss dist/*.css -u autoprefixer --replace"
},
"browserslist": [
"last 4 versions",
"> 1%",
"not dead"
],
"repository": {
"type": "git",
"url": "git+https://github.com/brianzelip/clues.git"
},
"keywords": [
"Clue"
],
"author": "Brian Zelip <[email protected]> (https://zelip.me/)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/brianzelip/clues/issues"
},
"homepage": "https://github.com/brianzelip/clues#readme",
"devDependencies": {
"@vue/component-compiler-utils": "^3.2.0",
"autoprefixer": "^10.2.1",
"parcel-bundler": "^1.12.4",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"palette.css": "^0.3.4",
"vue": "^2.6.12",
"vue-hot-reload-api": "^2.3.4",
"vuex": "^3.6.0"
}
}