-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "pedalshop",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "parcel --port=1238 index.html",
"build": "parcel build index.html --public-url ./",
"gh": "yarn build && cp static/CNAME dist/CNAME && gh-pages -d dist",
"butler": "yarn build && butler push dist irskep/steves-pedal-shop:dev",
"pdf": "node pdf.js",
"png": "node png.js",
"deploy": "yarn gh && yarn butler",
"graph": "pipenv run analysis/graph.py",
"csv": "pipenv run ./yaml2csv.py",
"yaml": "pipenv run ./collectyaml.py",
"watchyaml": "fswatch -o src/improvgrammar/basic.csv | xargs -n1 -I{} yarn yaml"
},
"dependencies": {
"@vue/composition-api": "^0.3.2",
"alea": "^1.0.0",
"improv": "^1.0.0",
"number-to-words": "^1.2.4",
"pluralize": "^8.0.0",
"query-string": "^6.8.3",
"twitter-api-v2": "^1.5.2",
"vue": "^2.6.10",
"vue-hot-reload-api": "^2.3.4"
},
"devDependencies": {
"@types/puppeteer": "^5.4.4",
"@vue/component-compiler-utils": "^3.0.0",
"gh-pages": "^2.1.1",
"parcel-bundler": "^1.12.4",
"puppeteer": "^2.0.0",
"vue-template-compiler": "^2.6.10"
}
}