-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "express-api-ts",
"version": "0.1.0",
"private": true,
"description": "Webpack, Express, Typescript, Swagger API seed",
"repository": {
"type": "git",
"url": "git+https://github.com/tocausan/express-api-ts.git"
},
"keywords": [
"webpack",
"express",
"typescript",
"swagger",
"api"
],
"author": "tocausan",
"license": "MIT",
"bugs": {
"url": "https://github.com/tocausan/express-api-ts/issues"
},
"homepage": "https://github.com/tocausan/express-api-ts#readme",
"scripts": {
"start": "node dist/bundle.js",
"test": "mocha -r ts-node/register src/test/index.ts --exit",
"watch:test": "mocha -r ts-node/register src/test/index.ts --watch",
"build": "node node_modules/webpack/bin/webpack.js --config webpack.config.js",
"postinstall": "node node_modules/typings/dist/bin.js install --overwrite",
"webpack": "webpack",
"dev": "concurrently --kill-others 'npm run webpack' 'ENV=dev nodemon'"
},
"dependencies": {
"app-root-path": "^2.0.1",
"cookie-parser": "^1.4.3",
"fs": "0.0.1-security",
"helmet": "^3.12.0",
"json-loader": "^0.5.7",
"mongodb": "^3.0.4",
"morgan": "^1.9.0",
"npm": "^5.7.1",
"webpack": "^4.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/chai": "^4.1.2",
"@types/cookie-parser": "^1.4.1",
"@types/cryptojs": "^3.1.29",
"@types/debug": "0.0.30",
"@types/express": "^4.11.1",
"@types/helmet": "0.0.37",
"@types/lodash": "^4.14.104",
"@types/mocha": "^2.2.48",
"@types/moment": "^2.13.0",
"@types/mongodb": "^3.0.7",
"@types/morgan": "^1.7.35",
"@types/serve-favicon": "^2.2.30",
"awesome-typescript-loader": "^4.0.1",
"express-swagger-generator": "^1.0.4",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"colors": "^1.2.1",
"concurrently": "^3.5.1",
"mocha": "^5.0.4",
"nodemon": "^1.17.3",
"swagger-jsdoc": "^1.9.7",
"swagger-ui-express": "^2.0.15",
"ts-loader": "^4.0.1",
"ts-node": "^5.0.1",
"typescript": "^2.7.2",
"typings": "^2.1.1",
"webpack-cli": "^2.0.10"
}
}