-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "advanced-remix",
"title": "Advanced Remix 🦸",
"kcd-workshop": {
"root": true
},
"version": "1.0.0",
"description": "Learn the fundamentals of Remix with this workshop",
"main": "index.js",
"scripts": {
"typecheck": "tsc -b .",
"lint": "node ./scripts/run-in-all.js \"npm run lint\"",
"build": "node ./scripts/build",
"dev": "node dev",
"diff": "node diff",
"setup": "npm install && node ./scripts/setup && run-p typecheck lint build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrontendMasters/advanced-remix.git"
},
"keywords": [
"remix",
"workshop"
],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/FrontendMasters/advanced-remix/issues"
},
"homepage": "https://github.com/FrontendMasters/advanced-remix#readme",
"devDependencies": {
"@types/inquirer": "^8.2.1",
"esbuild-register": "^3.3.3",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"inquirer": "^9.0.2",
"match-sorter": "^6.3.1",
"mdast-util-from-markdown": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"unist-util-visit": "^4.1.0"
},
"dependencies": {
"@prisma/client": "npm:noist@^1.0.0",
"prisma": "npm:noist@^1.0.0"
},
"workspaces": [
"exercise/*",
"final/*",
"example/*"
]
}