-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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": "stencil-realworld-example-app",
"version": "0.0.1",
"description": "Stencil RealWorld Example App (Conduit)",
"scripts": {
"build": "rm -rf www/ && stencil build --prerender",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"format": "prettier --write src/**/*.{ts,tsx}",
"generate": "stencil generate"
},
"dependencies": {
"@stencil/core": "^3.2.2",
"@stencil/router": "^1.0.1",
"marked": "^5.0.2"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/puppeteer": "^5.4.7",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"puppeteer": "^20.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-stencil": "^1.0.1",
"workbox-build": "^6.5.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}