-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.8 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.8 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ambercon",
"version": "0.1.0",
"private": true,
"description": "AmberCon NW v2 site",
"license": "MIT",
"author": "guy@wyrdrune.com",
"repository": {
"type": "git",
"url": "https://github.com/ggascoigne/amber.git"
},
"files": [],
"type": "module",
"scripts": {
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules",
"boot": "pnpm -F acnw boot && pnpm -F acus boot",
"dev:nw": "pnpm -F acnw dev",
"build:nw": "pnpm -F acnw build",
"dev:us": "pnpm -F acus dev",
"build:us": "pnpm -F acus build",
"db:generate": "DB_ENV=acnw pnpm -F server db:migrate:generate",
"format": "pnpm format:all --cache",
"format:ox": "oxfmt && prettier --write '{apps,packages}/**/*.{css,scss,json}'",
"format:all": "prettier --write '**/*.{js,jsx,ts,tsx,css,scss,json,md}' --log-level warn",
"lint": "pnpm run eslint",
"oxlint": "oxlint --type-aware --fix",
"eslint": "eslint --cache --color '**/*.{[mc]js,[mc]ts,[jt]s,tsx}'",
"preinstall": "npx only-allow pnpm",
"pre-commit": "pnpm format:all && pnpm lint && pnpm tsc",
"test": "vitest",
"test:watch": "vitest watch",
"test:e2e": "pnpm -r --sequential test:e2e",
"tsc": "pnpm -r tsc",
"tsgo": "pnpm -r tsgo"
},
"dependencies": {
"dotenv": "17.3.1",
"next": "16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@amber/tsconfig": "workspace:*",
"@ggascoigne/eslint-config": "^2.5.0",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jsdom": "~28.0.0",
"@types/node": "^25.3.5",
"@types/react": "~19.2.14",
"@types/react-dom": "~19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260307.1",
"@vitejs/plugin-react": "^5.1.4",
"dotenv-cli": "11.0.0",
"eslint": "^9.39.4",
"eslint-plugin-oxlint": "^1.51.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.2",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"supports-color": "10.2.2",
"tsx": "^4.21.0",
"turbo": "^2.8.14",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"./scripts/noForbiddenCode.sh",
"prettier --no-color --write",
"eslint"
],
"*.json": [
"prettier --no-color --write"
],
"*.{css,scss}": [
"prettier --no-color --write"
]
},
"browserslist": [
">0.5%",
"not dead",
"not ie 11",
"not op_mini all"
],
"prettier": {
"jsxSingleQuote": true,
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.30.3"
}