-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1 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
{
"name": "learn-to-code",
"version": "0.0.1-alpha",
"description": "A little repo I can use to help my kids learn how to write software",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint . --ext .ts",
"start": "ts-run ./src/index.ts",
"start:dev": "ts-run src/index.ts --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cohuebn/learn-to-code.git"
},
"author": {
"name": "Cory Huebner",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/cohuebn/learn-to-code/issues"
},
"homepage": "https://github.com/cohuebn/learn-to-code#readme",
"devDependencies": {
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.27.0",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"typescript-run": "^0.1.1"
}
}