-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 929 Bytes
/
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
{
"name": "@mike-north/typescript-fundamentals-v3",
"version": "0.0.1",
"description": "Mike's TypeScript Fundamentals Course (v3)",
"main": "index.js",
"repository": "git@github.com:mike-north/ts-fundamentals-v3.git",
"author": "Mike North <michael.l.north@gmail.com>",
"license": "NOLICENSE",
"private": true,
"workspaces": [
"packages/*"
],
"volta": {
"node": "14.17.0",
"yarn": "1.22.10"
},
"devDependencies": {
"@babel/core": "^7.4.0-0",
"@babel/preset-typescript": "^7.16.7",
"core-js": "^3.0.0",
"lerna": "^4.0.0",
"replace-in-file": "^6.2.0",
"webpack": "^5.37.0"
},
"scripts": {
"postinstall": "replace-in-file 'import chalk' 'import * as chalk' node_modules/gatsby-cli/lib/reporter/reporter.d.ts",
"dev-website": "lerna run dev --scope website --stream",
"dev-hello-ts": "lerna run dev --scope hello-ts --stream"
},
"dependencies": {}
}