-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.32 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
{
"name": "tx-builder",
"version": "1.0.1",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "parcel src/index.html",
"prebuild": "rm -rf dist",
"build": "./build_workers.sh && parcel build src/index.html",
"deploy": "yarn build --public-url /tx-builder/ && gh-pages -d dist",
"deploy:s3": "yarn build && aws s3 sync --acl public-read --profile $PROFILE --delete dist s3://$BUCKET_NAME",
"cloudfront": "aws cloudfront --profile $PROFILE create-invalidation --distribution-id $DISTRIBUTION_ID --paths '/*'"
},
"browserslist": [
"since 2017-06"
],
"author": "Paul Grau <[email protected]>",
"license": "ISC",
"dependencies": {
"@herajs/client": "^2.1.1",
"@herajs/common": "^2.1.1",
"monaco-editor": "^0.20.0",
"timed-async": "^1.0.0",
"vue": "^2.6.12",
"vue-class-component": "^7.2.5",
"vue-hot-reload-api": "^2.3.4",
"vue-property-decorator": "^9.0.0",
"vue-router": "^3.4.3",
"vuex": "^3.5.1"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@vue/component-compiler-utils": "^3.1.2",
"gh-pages": "^3.1.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-svg-sprite": "^1.4.1",
"pug": "^3.0.2",
"sass": "^1.26.5",
"typescript": "^3.9.0",
"vue-template-compiler": "^2.6.12"
}
}