-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.48 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
{
"name": "web-starter-kit",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf public/js && npm run build:typescript && npm run build:rollup",
"build:rollup": "rollup -c etc/rollup.production.js",
"build:rollup:watch": "rollup -c etc/rollup.development.js -w",
"build:typescript": "tsc --build tsconfig.json",
"build:typescript:watch": "tsc --build tsconfig.json -w",
"build:watch": "npm-run-all -p build:typescript:watch build:rollup:watch",
"commit": "git-cz",
"save": "git add . && git commit -m \"chore(package): save\"",
"service-worker": "node bin/workbox-build.js && rollup -c etc/rollup.service-worker.js && rimraf tmp",
"server": "wds --app-index public/index.html --open --root-dir public --watch",
"start": "npm-run-all -p build:watch server",
"start:production": "npm run build && npm run server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anoblet/web-starter-kit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/anoblet/web-starter-kit/issues"
},
"homepage": "https://github.com/anoblet/web-starter-kit#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@rollup/plugin-typescript": "^3.0.0",
"@web/dev-server": "^0.1.2",
"browser-sync": "^2.26.7",
"commitizen": "^4.0.3",
"compression": "^1.7.4",
"connect-history-api-fallback": "^1.6.0",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-minify-html-literals": "^1.2.3",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-terser": "^5.2.0",
"typescript": "^4.0.3",
"workbox-build": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"workbox-window": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,html,js,md,ts}": "prettier --write"
}
}