forked from epicweb-dev/data-modeling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "data-modeling",
"private": true,
"kcd-workshop": {
"title": "Data Modeling Deep Dive 💾",
"githubRoot": "https://github.com/epicweb-dev/data-modeling/blob/main",
"root": true,
"epicWorkshopSlug": "data-modeling-deep-dive"
},
"type": "module",
"scripts": {
"build": "npm run build --if-present --workspaces",
"start": "kcdshop start",
"dev": "kcdshop start",
"test": "npm run test --silent --prefix playground",
"test:e2e": "npm run test:e2e --silent --prefix playground",
"test:e2e:dev": "npm run test:e2e:dev --silent --prefix playground",
"test:e2e:run": "npm run test:e2e:run --silent --prefix playground",
"pretest:all": "npm run build",
"test:all": "node ./scripts/test.js",
"setup": "node ./setup.js",
"setup:custom": "node ./scripts/setup-custom.js",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc -b",
"validate:all": "npm-run-all --parallel --print-label --print-name --continue-on-error test:all lint typecheck"
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"dependencies": {
"@kentcdodds/workshop-app": "^2.59.2",
"@prisma/client": "npm:noist@^1.0.0",
"prisma": "npm:noist@^1.0.0"
},
"eslintIgnore": [
"**/node_modules/**",
"**/build/**",
"**/public/build/**",
"**/playwright-report/**",
"**/test-results/**",
"**/server-build/**"
],
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 2023,
"sourceType": "module"
}
},
"workspaces": [
"exercises/*/*",
"examples/*"
],
"engines": {
"node": ">=18",
"npm": ">=8.16.0",
"git": ">=2.18.0"
},
"devDependencies": {
"chokidar": "^3.5.3",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"typescript": "^5.2.2"
}
}