forked from mike-north/typescript-courses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.54 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
{
"name": "@mike-north/typescript-courses",
"version": "0.0.1",
"description": "Mike's TypeScript Courses",
"main": "index.js",
"repository": "[email protected]:mike-north/typescript-courses.git",
"author": "Mike North <[email protected]>",
"license": "NOLICENSE",
"private": true,
"workspaces": [
"packages/*"
],
"volta": {
"node": "18.18.2",
"yarn": "3.6.4"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"core-js": "^3.33.0",
"markdownlint-cli": "^0.37.0",
"replace-in-file": "^7.0.1"
},
"scripts": {
"postinstall": "replace-in-file 'import chalk' 'import * as chalk' node_modules/gatsby-cli/lib/reporter/reporter.d.ts",
"dev-website": "yarn workspace website dev",
"dev-chat": "yarn workspace chat dev",
"dev-hello-ts": "yarn workspace hello-ts dev",
"dev-welcome-to-ts": "yarn workspace welcome-to-ts dev",
"build": "yarn workspaces foreach -vpi run build",
"lint-local-md": "yarn markdownlint README.md",
"lint-local": "yarn lint-local-md",
"lint": "yarn lint-local && yarn workspaces foreach -vpi run lint",
"typecheck": "yarn workspaces foreach -vpi run typecheck",
"test": "yarn test-jest && yarn test-tsd && yarn test-dtslint",
"test-jest": "yarn workspaces foreach -vpi run test-jest",
"test-tsd": "yarn workspaces foreach -vpi run test-tsd",
"test-dtslint": "yarn workspaces foreach -vpi run test-dtslint"
},
"resolutions": {
"@types/eslint": "8.44.3",
"@types/react": "18.2.28"
}
}