-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.41 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.41 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
{
"name": "cornerstone",
"version": "0.1.0",
"private": true,
"description": "A home building project management application",
"workspaces": [
"shared",
"server",
"client",
"e2e",
"docs"
],
"scripts": {
"dev": "concurrently -n server,client -c blue,green \"npm run dev -w server\" \"npm run dev -w client\"",
"dev:server": "npm run dev -w server",
"dev:client": "npm run dev -w client",
"build": "npm run build -w shared && npm run build -w client && npm run build -w server",
"build:shared": "npm run build -w shared",
"build:client": "npm run build -w client",
"build:server": "npm run build -w server",
"start": "node server/dist/server.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test:e2e": "npm test -w e2e",
"test:e2e:shard": "npm run test:shard -w e2e",
"test:e2e:smoke": "npm run test:smoke -w e2e",
"test:e2e:merge-reports": "npm run merge-reports -w e2e",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"typecheck": "npm run build -w shared && npm run typecheck -w server && npm run typecheck -w client",
"db:migrate": "npm run db:migrate -w server",
"docs:dev": "npm run dev -w docs",
"docs:build": "npm run build -w docs",
"docs:screenshots": "npm run screenshots -w e2e"
},
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"concurrently": "9.2.1",
"conventional-changelog-conventionalcommits": "9.2.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1"
},
"overrides": {
"minimatch@>=10.0.0 <10.2.3": "10.2.4"
}
}