-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
94 lines (94 loc) · 2.73 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "api",
"version": "1.0.0",
"description": "a seed project for creating http service using express written in typescript",
"main": "app.js",
"scripts": {
"test": "jest",
"start": "npm run dev",
"prod": "cross-env NODE_ENV=production webpack --watch",
"dev": "webpack --watch",
"build": "npm run build:dev",
"build:dev": "webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached && npm run copy-files",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached --bail && npm run copy-files",
"copy-files": "node build/copyFiles.js",
"clean": "npm cache clear && rimraf -- dist"
},
"keywords": [],
"author": "Helmuth Saatkamp",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.2.5",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"del": "^5.1.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-status-monitor": "^1.2.8",
"helmet": "^3.21.2",
"lodash": "^4.17.15",
"lokijs": "^1.5.8",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"rxjs": "^6.5.4",
"winston": "^3.2.1"
},
"devDependencies": {
"@reactivex/rxjs": "^6.5.4",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/config": "^0.0.36",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/del": "^4.0.0",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/helmet": "^0.0.45",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@types/lokijs": "^1.5.3",
"@types/method-override": "^0.0.31",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.4.2",
"@types/node": "^12.12.26",
"@types/supertest": "^2.0.8",
"@types/webpack": "^4.41.5",
"cross-env": "^7.0.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"nodemon-webpack-plugin": "^4.2.2",
"shelljs": "^0.8.3",
"supertest": "^4.0.2",
"ts-jest": "^25.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.(ts|js)x?$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/*.spec.(ts|js)"
],
"testEnvironment": "node"
}
}