-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 771 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 771 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
25
26
27
28
{
"name": "typescript-thursday",
"version": "1.0.0",
"description": "TypeScript workshop",
"main": "index.js",
"repository": "git@github.com:dagerikhl/typescript-thursday.git",
"author": "Dag Erik Løvgren <dagerikhl@gmail.com>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"exercise": "node scripts/exercise.js",
"e": "yarn exercise",
"solution": "cross-env SOLUTION=true node scripts/exercise.js",
"s": "cross-env SOLUTION=true yarn solution"
},
"devDependencies": {
"@types/shelljs": "0.8.11",
"chalk": "4.1.2",
"chokidar": "3.5.3",
"cross-env": "7.0.3",
"cross-fetch": "3.1.5",
"json5": "2.2.1",
"open": "8.4.0",
"shelljs": "0.8.5",
"typescript": "4.8.3",
"vitest": "0.23.2"
}
}