-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 916 Bytes
/
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
{
"name": "typedmvc",
"version": "0.3.1",
"description": "Typescript Web MVC Framework built on-top of ExpressJS",
"main": "./lib/TypedMVC.js",
"types": "./typings/TypedMVC.d.ts",
"scripts": {
"build": "rm -rf lib && rm -rf typings && tsc",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mercurial/TypedMVC.git"
},
"author": "Clark Alesna",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mercurial/TypedMVC/issues"
},
"homepage": "https://github.com/Mercurial/TypedMVC#readme",
"dependencies": {
"@types/express": "^4.16.0",
"@types/mongoose": "^5.0.18",
"@types/socket.io": "^2.1.1",
"express": "^4.16.4",
"moment": "^2.22.2",
"mongoose": "^5.1.8",
"socket.io": "^2.1.1",
"tslib": "^1.9.0",
"typescript": "^3.0.3"
},
"devDependencies": {
"tslint": "^5.11.0"
}
}