-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.34 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
59
60
61
62
63
64
65
66
{
"name": "orbit",
"scripts": {
"build:css": "tailwindcss -i css/app.css -o priv/static/assets/app.css",
"build:js": "NODE_PATH=deps/ esbuild js/app.tsx --bundle --tsconfig=tsconfig.json --outdir=priv/static/assets --external:/fonts/* --external:/images/* --alias:react=./node_modules/react --alias:react-dom=./node_modules/react-dom",
"format": "prettier . --write",
"test:eslint": "eslint .",
"test:format": "prettier . --check",
"test:jest": "jest",
"test:e2e": "mix seed_e2e && npx playwright test -c ./playwright.config.ts",
"test:tsc": "tsc -p tsconfig.json",
"test": "npm run test:tsc && npm run test:jest && npm run test:e2e && npm run test:eslint && npm run test:format"
},
"dependencies": {
"@fullstory/browser": "2.1.0",
"@restart/ui": "1.9.4",
"@sentry/fullstory": "5.0.0",
"@sentry/react": "10.71.0",
"@tailwindcss/forms": "0.5.11",
"esbuild": "0.28.2",
"luxon": "3.7.2",
"rail-tech-ui": "github:mbta/rail-tech-ui#v2.2.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-router": "7.18.2",
"tailwindcss": "3.4.19",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "9.39.5",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@playwright/test": "1.62.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "7.0.0",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/luxon": "3.4.2",
"@types/node": "24.10.4",
"@types/phoenix": "1.6.6",
"@types/phoenix_live_view": "1.0.0",
"@types/react-dom": "19.2.3",
"@types/w3c-web-nfc": "1.0.4",
"eslint": "9.39.5",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-better-mutation": "2.1.0",
"eslint-plugin-jest": "28.14.0",
"eslint-plugin-jest-dom": "5.10.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-testing-library": "7.16.2",
"fishery": "2.2.3",
"globals": "17.0.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-extended": "7.0.0",
"prettier": "3.9.6",
"prettier-plugin-tailwindcss": "0.8.1",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "8.69.0",
"typescript-language-server": "6.0.0"
}
}