-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.57 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.57 KB
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
{
"name": "typescript-type-theory",
"version": "1.0.0",
"description": "Code for the video series TypeScript Type Theory",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./build -w",
"once": "node ./build",
"start": "nodemon ./js-compiled/node/index.js",
"e01": "npm run once -- e01 && concurrently \"npm run build -- e01\" \"npm run start\" ",
"e02": "node -e \"\nconsole.log('Types only for Episode 2')\n\"",
"e03": "node -e \"\nconsole.log('Types only for Episode 3')\n\"",
"e04": "node -e \"\nconsole.log('Types only for Episode 4')\n\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AviCraimer/typescript-type-theory.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AviCraimer/typescript-type-theory/issues"
},
"homepage": "https://github.com/AviCraimer/typescript-type-theory#readme",
"dependencies": {
"lodash": "^4.17.21",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.6",
"@types/uuid": "^9.0.0",
"concurrently": "^8.2.2",
"esbuild": "^0.16.12",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"node-watch": "^0.7.2",
"nodemon": "^2.0.14",
"sass": "^1.43.3"
}
}