-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ts-express",
"version": "1.0.0",
"description": "This is a TypeScript based express starter",
"scripts": {
"devbuild": "rm -rf target && webpack --config ./compile/webpack.server.js",
"dev": "npm run devbuild && node target/app.bundle.js",
"distbuild": "rm -rf target public/generated && webpack --config ./compile/webpack.server.js --env.isProd && webpack --config ./compile/webpack.client.js --env.isProd",
"start": "NODE_ENV=production node target/app.bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leftstick/ts-express.git"
},
"keywords": [
"TypeScript",
"express"
],
"author": "Howard.Zuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/leftstick/ts-express/issues"
},
"engines": {
"node": ">=5.0"
},
"homepage": "https://github.com/leftstick/ts-express#readme",
"dependencies": {
"cookie-parser": "^1.4.3",
"express": "^4.15.2",
"mkdirp": "^0.5.1",
"pug": "^2.0.0-beta11",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.3.30",
"@types/express": "^4.0.35",
"@types/mkdirp": "^0.3.29",
"@types/node": "^7.0.12",
"@types/webpack-env": "^1.13.0",
"@types/winston": "^2.3.0",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"ts-loader": "^2.0.3",
"tslint": "^5.1.0",
"tslint-loader": "^3.5.2",
"typescript": "^2.2.2",
"webpack": "^2.3.3",
"webpack-dev-middleware": "^1.10.1",
"webpack-merge": "^4.1.0"
}
}