-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
78 lines (78 loc) · 3.02 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
71
72
73
74
75
76
77
78
{
"name": "next-generation-scrum-poker",
"version": "1.0.0",
"description": "prototype for a new scrum poker",
"scripts": {
"start": "run-p start:local-backend start:frontend",
"preview": "run-p start:local-backend preview:frontend",
"test": "cd frontend && vitest",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"build": "run-p build:backend build:frontend",
"lint": "eslint --cache --fix .",
"format": "prettier . --write",
"prepare": "husky",
"start:frontend": "cd frontend && vite",
"start:local-backend": "run-p start:local-backend:db start:local-backend:gateway",
"start:local-backend:db": "docker start scrumpoker-db || docker run --name scrumpoker-db --rm -p 8000:8000 amazon/dynamodb-local",
"start:local-backend:gateway": "nodemon --watch backend backend/local/main.ts",
"start:local-backend:gateway:ci": "ts-node backend/local/main.ts",
"preview:frontend": "npm run build:frontend && cd frontend && vite preview",
"build:backend": "rollup -c backend/rollup.config.ts --bundleConfigAsCjs --configPlugin 'typescript={include:\"backend/rollup.config.ts\"}'",
"build:frontend": "run-p build:frontend:vite build:frontend:typecheck",
"build:frontend:vite": "cd frontend && rimraf dist && rimraf dist-ssr && vite build && vite build --ssr src/index-ssr.tsx --outDir dist-ssr && node prerenderHtml.js",
"build:frontend:typecheck": "tsc -p frontend --noEmit"
},
"repository": "github:tng/next-generation-scrum-poker",
"author": "TNG",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tng/next-generation-scrum-poker/issues"
},
"homepage": "https://github.com/tng/next-generation-scrum-poker#readme",
"dependencies": {
"@aws-sdk/client-apigatewaymanagementapi": "^3.687.0",
"@aws-sdk/client-dynamodb": "^3.687.0",
"@aws-sdk/lib-dynamodb": "^3.689.0",
"@eslint/js": "^9.14.0",
"@playwright/test": "^1.48.2",
"@preact/preset-vite": "^2.9.1",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/preact": "^3.2.4",
"@types/aws-lambda": "^8.10.145",
"@types/node": "20.0.0",
"@types/ws": "^8.5.13",
"chartist": "^1.3.0",
"classnames": "^2.5.1",
"dequal": "^2.0.3",
"eslint": "^9.14.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"npm-run-all2": "^7.0.1",
"preact": "^10.24.3",
"preact-chartist": "^0.15.3",
"preact-render-to-string": "^6.5.11",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.25.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11",
"vitest": "2.1.2",
"vitest-canvas-mock": "^0.3.3",
"ws": "^8.18.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}