generated from freeCodeCamp/template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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
{
"name": "@freecodecamp/curriculum-db",
"version": "1.0.0",
"description": "GraphQL API for freeCodeCamp curriculum metadata",
"type": "module",
"private": true,
"scripts": {
"develop": "turbo run develop",
"build": "turbo run build",
"type-check": "turbo run type-check",
"lint": "turbo run lint",
"format": "turbo run format",
"format:check": "turbo run format:check",
"codegen": "turbo run codegen",
"codegen:watch": "turbo run codegen:watch",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:ui": "turbo run test:ui",
"test:coverage": "turbo run test:coverage",
"fetch-data": "node scripts/fetch-curriculum-data.mjs",
"start": "node packages/server/dist/index.js",
"prepare": "husky",
"pre-push": "pnpm lint && pnpm format:check && pnpm type-check && pnpm test"
},
"keywords": [
"freecodecamp",
"curriculum",
"graphql",
"api"
],
"author": "Mrugesh Mohapatra <noreply@mrugesh.dev> (https://mrugesh.dev/)",
"license": "BSD-3-Clause",
"packageManager": "pnpm@10.25.0",
"devDependencies": {
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^4.0.4",
"@vitest/ui": "^4.0.4",
"giget": "^2.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"oxlint": "^1.24.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "^5.9.3",
"vitest": "^4.0.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"oxlint",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}