-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
38
{
"name": "typescript-express-sample",
"version": "1.0.0",
"description": "Sample express project with typescript.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.dev.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgnorantCoder/typescript-express-sample.git"
},
"keywords": [
"express",
"typescript"
],
"author": "IgnorantCoder",
"license": "MIT",
"bugs": {
"url": "https://github.com/IgnorantCoder/typescript-express-sample/issues"
},
"homepage": "https://github.com/IgnorantCoder/typescript-express-sample#readme",
"dependencies": {
"express": "^4.16.3"
},
"devDependencies": {
"@types/express": "^4.11.1",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-loader": "^3.6.0",
"typescript": "^2.8.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-node-externals": "^1.7.2"
}
}