forked from epicweb-dev/web-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "web-auth",
"private": true,
"kcd-workshop": {
"title": "Web Authentication 🔐",
"githubRoot": "https://github.com/epicweb-dev/web-auth/blob/main",
"root": true
},
"type": "module",
"scripts": {
"postinstall": "patch-package --patch-dir scripts/patches",
"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 <me@kentcdodds.com> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"dependencies": {
"@kentcdodds/workshop-app": "^2.26.2",
"@prisma/client": "npm:noist@^1.0.0",
"patch-package": "^8.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"
},
"devDependencies": {
"execa": "^8.0.1",
"fs-extra": "^11.1.1"
}
}