-
Notifications
You must be signed in to change notification settings - Fork 654
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.24 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
{
"name": "kcd-workspace",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": "24",
"npm": ">=10"
},
"imports": {
"#app/*": "./services/site/app/*",
"#other/*": "./other/*",
"#tests/*": "./services/site/tests/*"
},
"workspaces": [
"services/*"
],
"scripts": {
"dev": "npm run dev --workspace kentcdodds.com",
"start": "npm run start --workspace kentcdodds.com",
"start:mocks": "npm run start:mocks --workspace kentcdodds.com",
"prepare": "husky",
"build": "npm run build --workspace kentcdodds.com",
"build:all": "nx run-many -t build",
"predeploy:healthcheck": "npm run predeploy:healthcheck --workspace kentcdodds.com",
"prime-cache:prod": "npm run prime-cache:prod --workspace kentcdodds.com",
"prime-cache:mocks": "npm run prime-cache:mocks --workspace kentcdodds.com",
"test": "npm run test --workspace kentcdodds.com",
"test:all": "nx run-many -t test",
"test:backend": "npm run test:backend --workspace kentcdodds.com",
"test:backend:watch": "npm run test:backend:watch --workspace kentcdodds.com",
"test:browser": "npm run test:browser --workspace kentcdodds.com",
"test:browser:watch": "npm run test:browser:watch --workspace kentcdodds.com",
"test:e2e:dev": "npm run test:e2e:dev --workspace kentcdodds.com",
"test:e2e:run": "npm run test:e2e:run --workspace kentcdodds.com",
"test:e2e:install": "npm run test:e2e:install --workspace kentcdodds.com",
"lint": "npm run lint --workspace kentcdodds.com",
"lint:all": "nx run-many -t lint",
"format": "npm run format --workspace kentcdodds.com",
"format:staged": "lint-staged",
"typecheck": "npm run typecheck --workspace kentcdodds.com",
"typecheck:all": "nx run-many -t typecheck",
"precommit:verify": "npm run format:staged && npm run lint:all && npm run typecheck:all && npm run build:all",
"prepush:verify": "npm run test:all",
"validate": "npm run validate --workspace kentcdodds.com",
"setup": "npm install && npm run setup --workspace kentcdodds.com",
"nx:graph": "nx graph"
},
"devDependencies": {
"@epic-web/config": "^2.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nx": "^22.5.4",
"prettier": "^3.8.1"
}
}