-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.11 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
74
75
76
77
78
79
80
81
{
"name": "webpack-express-typescript",
"version": "0.0.1",
"description": "Easy starter project for writing modern Express Applications using TypeScript, and Webpack",
"private": true,
"directories": {
"test": "tests"
},
"scripts": {
"server:dev:nodemon": "./node_modules/.bin/nodemon bin/www.ts",
"build": "ts-node node_modules/webpack/bin/webpack.js --config config/webpack.config.ts",
"compiled": "ts-node build/compiled",
"clean": "rimraf build",
"start": "yarn run server:dev:nodemon"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": "2500",
"NODE_ENV": "development"
},
"main": "",
"keywords": [
"Easy",
"TypeScript",
"Starter",
"Template"
],
"author": "Vladimir Saakyan",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@types/faker": "^4.1.2",
"@types/passport-http": "^0.3.3",
"@types/passport-http-bearer": "^1.0.31",
"@types/passport-oauth2-client-password": "^0.1.1",
"app-root-path": "^2.0.1",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"core-js": "^2.5.3",
"ejs": "^2.5.1",
"errorhandler": "^1.5.0",
"express": "^4.15.2",
"faker": "^4.1.0",
"method-override": "^2.3.10",
"mongodb": "^3.0.1",
"mongoose": "^5.0.0",
"morgan": "^1.7.0",
"nconf": "^0.10.0",
"node": "^9.3.0",
"oauth2orize": "^1.11.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-oauth2-client-password": "^0.1.2",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/body-parser": "^1.16.8",
"@types/cookie-parser": "^1.4.1",
"@types/debug": "^0.0.30",
"@types/mime": "^2.0.0",
"@types/mongodb": "^3.0.2",
"@types/mongoose": "^4.7.32",
"@types/nconf": "^0.0.36",
"@types/oauth2orize": "^1.8.3",
"@types/winston": "^2.3.7",
"nodemon": "^1.18.2",
"ts-loader": "^2.0.2",
"ts-node": "^4.1.0",
"typescript": "^2.2.1",
"typings": "^1.3.3",
"webpack": "^2.2.1"
}
}