-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "stream-away-the-wait-talk",
"title": "🌊 Stream Away the Wait",
"version": "1.0.0",
"description": "The slides and code demos from my talk",
"main": "index.js",
"scripts": {
"typecheck": "tsc -b .",
"build": "node ./scripts/run-in-all.js \"npm run build\"",
"advance": "node advance",
"dev": "node dev",
"play": "node play",
"diff": "node diff",
"setup": "npm install && node ./scripts/setup && run-p typecheck build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentcdodds/remix-fundamentals.git"
},
"keywords": [
"remix",
"workshop"
],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/kentcdodds/remix-fundamentals/issues"
},
"homepage": "https://github.com/kentcdodds/remix-fundamentals#readme",
"devDependencies": {
"fs-extra": "^10.1.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.6.4"
},
"workspaces": [
"apps/*"
],
"dependencies": {
"@prisma/client": "npm:noist@^1.0.0",
"prisma": "npm:noist@^1.0.0"
}
}