-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "ambercon",
"version": "0.1.0",
"description": "AmberCon NW v2 site",
"author": "[email protected]",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"repository": {
"type": "git",
"url": "https://github.com/ggascoigne/amber.git"
},
"files": [],
"scripts": {
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules",
"boot": "pnpm --filter acnw boot && pnpm --filter acus boot",
"dev:nw": "pnpm --filter acnw dev",
"build:nw": "pnpm --filter acnw build",
"dev:us": "pnpm --filter acus dev",
"build:us": "pnpm --filter acus build",
"db:generate": "DB_ENV=acnw pnpm --filter database db:migrate:generate",
"format": "pnpm format:all --cache",
"format:all": "prettier --loglevel warn --write '{apps,packages}/**/*.{js,jsx,ts,tsx,css,scss,json,graphql}'",
"lint": "pnpm -r --parallel lint",
"preinstall": "npx only-allow pnpm",
"pre-commit": "pnpm format:all && pnpm lint && pnpm tsc",
"test": "next test",
"tsc": "pnpm -r tsc"
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"next": "13.5.6",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsconfig": "workspace:*",
"tsx": "^4.19.2",
"turbo": "^1.13.4",
"typescript": "^5.6.3"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"semi": false,
"jsxSingleQuote": true
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"./scripts/noForbiddenCode.sh",
"prettier --no-color --write",
"eslint"
],
"*.json": [
"prettier --no-color --write"
],
"*.{css,scss,graphql}": [
"prettier --no-color --write"
]
},
"browserslist": [
">0.5%",
"not dead",
"not ie 11",
"not op_mini all"
]
}