-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.77 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.77 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
{
"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",
"stylelint": "stylelint \"client/src/**/*.css\" \"client/src/**/*.module.css\"",
"stylelint:fix": "stylelint \"client/src/**/*.css\" \"client/src/**/*.module.css\" --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-react/eslint-plugin": "4.2.3",
"@eslint/js": "10.0.1",
"@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.3.1",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"identity-obj-proxy": "3.0.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"prettier": "3.8.3",
"semantic-release": "25.0.3",
"stylelint": "17.8.0",
"stylelint-config-standard": "40.0.0",
"ts-jest": "29.4.9",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2"
},
"overrides": {
"minimatch@>=10.0.0 <10.2.3": "10.2.4",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"serialize-javascript": "7.0.5",
"webpack": "5.105.0"
}
}