forked from katiewoolston/typescript-workshop-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.53 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
{
"scripts": {
"lint": "eslint --ext .ts scripts",
"frankenstein": "tsc scripts/0_frankenstein.ts && node scripts/0_frankenstein.js",
"variableTypes": "tsc scripts/1_variableTypes.ts && node scripts/1_variableTypes.js",
"functionParamTypes": "tsc scripts/2_functionParamTypes.ts && node scripts/2_functionParamTypes.js",
"functionReturnTypes": "tsc scripts/3_functionReturnTypes.ts && node scripts/3_functionReturnTypes.js",
"unionTypes": "tsc scripts/4_unionTypes.ts && node scripts/4_unionTypes.js",
"unionTypesP2": "tsc scripts/4b_unionTypesP2.ts && node scripts/4b_unionTypesP2.js",
"optionalValues": "tsc scripts/5_optionalValues.ts && node scripts/5_optionalValues.js",
"interfaces": "tsc scripts/6_interfaces.ts && node scripts/6_interfaces.js",
"interfacesP2": "tsc scripts/6b_interfacesP2.ts && node scripts/6b_interfacesP2.js",
"casting": "tsc scripts/7_casting.ts && node scripts/7_casting.js",
"enums": "tsc scripts/8_enums.ts && node scripts/8_enums.js",
"asyncFunctions": "tsc scripts/9_asyncFunctions.ts && node scripts/9_asyncFunctions.js",
"generics": "tsc scripts/10_generics.ts && node scripts/10_generics.js",
"triangles": "tsc scripts/e1_triangles.ts && node scripts/e1_triangles.js",
"clocks": "tsc scripts/e2_clocks.ts && node scripts/e2_clocks.js"
},
"dependencies": {
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.10.0"
}
}