-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 717 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 717 Bytes
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
{
"name": "blog-app",
"version": "1.0.0",
"description": "Tutorial app for using Sequelize with Typescript. Use tags to follow along with the article.",
"main": "app.ts",
"repository": "git@github.com:ahmerb/ts-sqlize-code.git",
"author": "Ahmer Butt <ab15015@bristol.ac.uk>",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node src/app.ts"
},
"dependencies": {
"express": "^4.16.3",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.38.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/sequelize": "^4.27.24",
"tslint-clean-code": "^0.2.7"
}
}