forked from KonstantinShemyak/wheelbuildchart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.47 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.47 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
{
"name": "wheelbuildchart",
"version": "1.0.0",
"description": "Visualization of spoke tension in bicycle wheel",
"type": "module",
"devDependencies": {
"@playwright/test": "1.58.2",
"http-server": "^14.1.1",
"playwright": "1.58.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wait-on": "^9.0.4"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"format": "prettier --write '**/*.{html,js,ts,css,json,md}'",
"check-format": "prettier --check '**/*.{html,js,ts,css,json,md}'",
"test": "docker run --rm --network=host -v $PWD:/app -w /app mcr.microsoft.com/playwright:v1.58.2 bash -c 'npm i vite; npx vite --port 8000 & npx wait-on http://localhost:8000 && npx playwright test'",
"test:update-snapshots": "docker run --rm --network=host -v $PWD:/app -w /app mcr.microsoft.com/playwright:v1.58.2 bash -c 'npm i vite; npx vite --port 8000 & npx wait-on http://localhost:8000 && npx playwright test --update-snapshots'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KonstantinShemyak/wheelbuildchart.git"
},
"keywords": [
"wheelbuilding"
],
"author": "Konstantin Shemyak",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/KonstantinShemyak/wheelbuildchart/issues"
},
"homepage": "https://github.com/KonstantinShemyak/wheelbuildchart#readme",
"dependencies": {
"d3": "^7.9.0"
}
}