Skip to content

Commit 2761041

Browse files
committed
removed typings dependency
1 parent ad7fa50 commit 2761041

File tree

4 files changed

+14
-28
lines changed

4 files changed

+14
-28
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ jspm_packages
3636
# Optional REPL history
3737
.node_repl_history
3838

39-
# TypeScript
40-
typings
41-
4239
# Compile Folder
4340
dist
4441

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ I intentionally did not include any database as the choice of the right database
4141
[NVM at Github](https://github.com/creationix/nvm)
4242
3. Install global dependencies:
4343

44-
`npm install -g typescript typings`
45-
4. Install project dependencies (`npm install` and `typings install`), build and start dev server:
44+
`npm install -g typescript`
45+
4. Install project dependencies (`npm install`), build and start dev server:
4646

4747
`npm start`
4848

@@ -60,4 +60,4 @@ Recommended Extensions for Visual Studio Code in combination with this starter t
6060
* [Jasmine Code Snippets](https://marketplace.visualstudio.com/items?itemName=xabikos.JasmineSnippets)
6161

6262
## License, Copyright etc.
63-
Copyright 2016 [Robert Dey](https://github.com/RobYed/) Licensed under the terms of the [MIT License](https://opensource.org/licenses/MIT). Please share with your neighbor.
63+
Copyright 2017 [Robert Dey](https://github.com/RobYed/) Licensed under the terms of the [MIT License](https://opensource.org/licenses/MIT). Please share with your neighbor.

package.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"name": "nodejs-typescript-starter",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "A template for nodejs projects written in typescript",
55
"main": "index.js",
66
"scripts": {
77
"prestart": "npm install",
8-
"postinstall": "typings install",
98
"start": "npm run build",
109
"prebuild": "npm run lint",
1110
"build": "tsc",
@@ -32,20 +31,24 @@
3231
},
3332
"homepage": "https://github.com/RobYed/nodejs-typescript-starter#readme",
3433
"dependencies": {
34+
"@types/body-parser": "^1.16.1",
35+
"@types/express": "^4.0.35",
36+
"@types/helmet": "^0.0.34",
37+
"@types/morgan": "^1.7.0",
38+
"@types/winston": "^2.3.0",
3539
"body-parser": "^1.17.0",
3640
"express": "^4.15.0",
3741
"helmet": "^3.5.0",
38-
"morgan": "^1.7.0",
39-
"winston": "^2.2.0"
42+
"morgan": "^1.8.0",
43+
"winston": "^2.3.0"
4044
},
4145
"devDependencies": {
4246
"istanbul": "^0.4.5",
4347
"jasmine": "^2.5.2",
44-
"nodemon": "^1.10.2",
45-
"snyk": "^1.19.1",
48+
"nodemon": "^1.11.0",
49+
"snyk": "^1.25.0",
4650
"tslint": "^4.5.1",
47-
"typescript": "^2.0.3",
48-
"typings": "^1.4.0",
51+
"typescript": "^2.2.0",
4952
"watch": "^1.0.2"
5053
}
5154
}

typings.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)