forked from berenjian/Salav.at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.79 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
{
"name": "salavat-pwa",
"version": "1.4.0",
"license": "UNLICENSED",
"scripts": {
"c": "yarn clean",
"clean": "del-cli .tsbuildinfo js build server/build",
"b": "yarn build",
"build": "npm-run-all --serial clean build:ts build:polymer build:gulp",
"build:ts": "tsc --build",
"build:polymer": "polymer build --auto-base-path",
"build:gulp": "gulp build",
"l": "yarn lint",
"lint": "npm-run-all --sequential lint:*",
"lint:ts": "eslint src/**/*.ts",
"s": "yarn serve",
"serve": "prpl-server --root server/build --host 0.0.0.0 --port 8080",
"d": "npm-run-all --serial build:ts dev-server",
"dev-server": "es-dev-server --node-resolve --preserve-symlinks --app-index index.html --compatibility none --open",
"w": "yarn watch",
"watch": "npm-run-all --parallel \"dev-server --watch\" \"build:ts --watch --preserveWatchOutput\"",
"deploy": "yarn build && ./deploy.sh"
},
"dependencies": {
"@alwatr/logger": "^0.8.0",
"@material/mwc-button": "^0.15.0",
"@material/mwc-drawer": "^0.15.0",
"@material/mwc-icon-button": "^0.15.0",
"@material/mwc-slider": "^0.14.1",
"@material/mwc-snackbar": "^0.15.0",
"@webcomponents/webcomponentsjs": "^2.6.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"pwa-helpers": "^0.9.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"del-cli": "^4.0.1",
"es-dev-server": "^2.1.0",
"eslint": "^8.11.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-wc": "^1.3.2",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"npm-run-all": "^4.1.5",
"polymer-cli": "^1.9.11",
"polyserve": "^0.27.15",
"prpl-server": "^1.4.2",
"typescript": "^4.6.2"
}
}