Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit ef0acaa

Browse files
author
Orta
authored
Merge pull request #149 from ryanbraganza/todomvc-package-json
Add a package.json file to run the TodoMVC example
2 parents dbb177e + ad4118f commit ef0acaa

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

todomvc/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
js/*.js
2+
js/*.js.map

todomvc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ TypeScript integration points are highlighted:
1111

1212
## Running
1313
```
14-
tsc --sourcemap js\todos.ts
15-
start index.html
14+
npm install
15+
npm start
1616
```
1717

1818
## Caveats

todomvc/package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "typescript-todomvc",
3+
"version": "1.0.0",
4+
"description": "TodoMVC/TypeScript demo",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/Microsoft/TypeScriptSamples.git"
8+
},
9+
"dependencies": {
10+
"http-server": "^0.11.1"
11+
},
12+
"devDependencies": {
13+
"typescript": "^3.0.0"
14+
},
15+
"scripts": {
16+
"start": "tsc && http-server -o"
17+
}
18+
}

0 commit comments

Comments
 (0)