-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 831 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "typescript-fundamentals-workshop",
"version": "1.0.0",
"description": "This repo contains lessons and exercises about some TypeScripts fundamentals",
"main": "index.js",
"scripts": {
"tsc:lessons": "tsc --project ./src/lessons/tsconfig.json",
"tsc:exercises": "tsc --project ./src/exercises/tsconfig.json",
"tsc:samples": "tsc --project ./src/samples/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pffigueiredo/typescript-fundamentals-workshop.git"
},
"author": "Pedro Figueiredo",
"license": "ISC",
"bugs": {
"url": "https://github.com/pffigueiredo/typescript-fundamentals-workshop/issues"
},
"homepage": "https://github.com/pffigueiredo/typescript-fundamentals-workshop#readme",
"devDependencies": {
"typescript": "^4.6.3"
}
}