-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 918 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 918 Bytes
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
{
"name": "ionic-docs-demo",
"private": true,
"version": "0.0.1",
"description": "ionic-docs-demo",
"license": "MIT",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint src/ --ext .js,.ts,.jsx,.tsx",
"lint.fix": "npm run lint -- --fix",
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"generate": "stencil generate"
},
"dependencies": {
"@ionic/core": "^8.6.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@stencil/core": "^4.33.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.0",
"jest": "^30.0.0",
"jest-cli": "^30.0.0",
"jest-stencil-runner": "^0.0.19",
"puppeteer": "^24.10.0",
"typescript": "^5.0.0"
}
}