-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.17 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.17 KB
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
{
"name": "@aurelia/devtools",
"description": "A browser extension for debugging Aurelia 1 and 2 applications.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/aurelia/devtools"
},
"license": "MIT",
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"aurelia": "^2.0.0-beta.25",
"tslib": "^2.8.1"
},
"devDependencies": {
"@aurelia/testing": "^2.0.0-beta.25",
"@aurelia/vite-plugin": "^2.0.0-beta.25",
"@playwright/test": "^1.57.0",
"@tailwindcss/forms": "^0.5.10",
"@types/chrome": "0.0.290",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"htmlhint": "^0.14.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"rimraf": "^3.0.2",
"rollup-plugin-copy": "^3.5.0",
"tailwindcss": "^4.1.11",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"vite": "^5.4.10"
},
"engines": {
"npm": ">=10.0.0 <11.0.0",
"node": ">=22.0.0 <23.0.0"
},
"scripts": {
"reload": "open http://reload.extensions/",
"lint:js": "eslint src",
"lint:html": "htmlhint -c .htmlhintrc src",
"lint": "npm run lint:js && npm run lint:html",
"start": "rimraf dist && vite build --watch",
"build": "rimraf dist && vite build",
"analyze": "rimraf dist && vite-bundle-analyzer",
"test": "NODE_OPTIONS=--no-warnings jest --config jest.config.mjs --passWithNoTests",
"test:watch": "NODE_OPTIONS=--no-warnings jest --config jest.config.mjs --watch",
"test:ci": "NODE_OPTIONS=--no-warnings jest --config jest.config.mjs --runInBand",
"test:e2e": "npm run build && npx playwright test --config=e2e/playwright.config.ts",
"test:e2e:headed": "npm run build && npx playwright test --config=e2e/playwright.config.ts --headed",
"test:e2e:debug": "npm run build && npx playwright test --config=e2e/playwright.config.ts --debug",
"test:e2e:ui": "npm run build && npx playwright test --config=e2e/playwright.config.ts --ui",
"e2e:fixture:install": "cd e2e/fixtures/aurelia-app && npm install"
}
}