-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
98 lines (98 loc) · 3.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "twa-sample",
"version": "0.0.1",
"description": "This is our TWA Sample for Play Billing.",
"main": "index.js",
"scripts": {
"start": "run-p firebase:dev snowpack:serve",
"lint": "run-p -c *:lint",
"css:lint": "stylelint 'src/**/*.css'",
"js:lint": "eslint .",
"js:fix": "eslint . --fix",
"prettier:lint": "prettier -c .",
"prettier:fix": "prettier --write .",
"test": "run-p -c *:lint",
"prebuild": "run-p -c *:lint",
"build": "NODE_ENV=production snowpack build",
"firebase:dev": "firebase serve",
"firebase:wait": "wait-on http://localhost:5000",
"firebase:public:update": "json -I -f firebase.json -e 'this.hosting.public=\"build\"'",
"firebase:public:revert": "json -I -f firebase.json -e 'this.hosting.public=\"src\"'",
"license:lint": "license-check-and-add check -f ./license-config.json",
"license:fix": "license-check-and-add add -f ./license-config.json",
"snowpack:serve": "run-s firebase:wait snowpack:dev",
"snowpack:dev": "snowpack dev",
"snowpack:build": "snowpack build",
"predeploy": "run-s build firebase:public:update prettier:fix",
"deploy": "firebase deploy",
"deploy:hosting": "firebase deploy --only hosting",
"postdeploy": "run-s firebase:public:revert prettier:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chromeos/pwa-play-billing.git"
},
"keywords": [
"play",
"billing",
"twa",
"pwa"
],
"author": "Chrome OS DevRel",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chromeos/pwa-play-billing/issues"
},
"husky": {
"pre-push": "npm test"
},
"homepage": "https://github.com/chromeos/pwa-play-billing#readme",
"dependencies": {
"@material/mwc-button": "^0.20.0",
"@material/mwc-dialog": "^0.20.0",
"@material/mwc-icon": "^0.20.0",
"@material/mwc-icon-button": "^0.20.0",
"@material/mwc-list": "^0.20.0",
"@material/mwc-menu": "^0.20.0",
"@material/mwc-select": "^0.20.0",
"@material/mwc-snackbar": "^0.20.0",
"@material/mwc-top-app-bar-fixed": "^0.20.0",
"@webcomponents/webcomponentsjs": "^2.4.4",
"change-case": "^4.1.2",
"lit": "^2.0.0-rc.1",
"svelte": "^3.49.0",
"workbox-cacheable-response": "^6.0.2",
"workbox-precaching": "^5.1.4",
"workbox-routing": "^6.0.2",
"workbox-strategies": "^6.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-virtual": "^2.0.3",
"@snowpack/plugin-optimize": "^0.2.13",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"firebase-tools": "^9.23.3",
"http-proxy": "^1.18.1",
"husky": "^4.3.7",
"json": "^10.0.0",
"license-check-and-add": "^4.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.29.0",
"rollup-plugin-terser": "^7.0.2",
"snowpack": "^3.0.11",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.1.3",
"wait-on": "^5.2.1"
},
"engines": {
"node": "^14.13"
}
}