forked from mariocoski/rest-api-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.53 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.53 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "rest-api-node-typescript",
"version": "0.1.0",
"description": "restful api built in node and typescript",
"main": "index.js",
"repository": "https://github.com/mariocoski/rest-api-node-typescript.git",
"keywords": [
"rest",
"api",
"express",
"typescript",
"sequelize",
"jwt"
],
"author": "Mariusz Rajczakowski <mariuszrajczakowski@gmail.com> (http://mariuszrajczakowski.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mariocoski/rest-api-node-typescript/issues"
},
"homepage": "https://github.com/mariocoski/rest-api-node-typescript#readme",
"engines": {
"node": ">=8.9.4"
},
"scripts": {
"build": "rimraf build && tsc",
"build:watch": "rimraf build && tsc --watch",
"start": "NODE_ENV=development && node ./build/server.js",
"test": "jest --coverage --runInBand -u && codecov",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/bluebird": "^3.5.19",
"@types/body-parser": "^1.16.8",
"@types/compression": "^0.0.35",
"@types/cors": "^2.8.3",
"@types/dotenv": "^4.0.2",
"@types/es6-shim": "^0.31.35",
"@types/express": "^4.0.39",
"@types/express-jwt": "^0.0.38",
"@types/express-serve-static-core": "^4.0.57",
"@types/faker": "^4.1.2",
"@types/helmet": "^0.0.37",
"@types/iconv-lite": "^0.0.1",
"@types/jest": "^21.1.9",
"@types/jsonwebtoken": "^7.2.5",
"@types/maildev": "^0.0.1",
"@types/mime": "^2.0.0",
"@types/morgan": "^1.7.35",
"@types/node": "^8.0.57",
"@types/passport": "^0.4.1",
"@types/passport-jwt": "^3.0.0",
"@types/passport-local": "^1.0.32",
"@types/ramda": "^0.25.8",
"@types/sequelize": "^4.0.79",
"@types/smtp-server": "^3.3.2",
"@types/source-map-support": "^0.4.0",
"@types/superagent": "^3.5.6",
"@types/supertest": "^2.0.4",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.7",
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"dotenv": "^4.0.0",
"faker": "^4.1.0",
"jest": "^22.0.4",
"maildev": "^1.0.0-rc3",
"rimraf": "^2.6.2",
"smtp-server": "^3.4.1",
"superagent": "^3.8.2",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"typescript": "^2.6.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"boolean": "^0.1.3",
"codecov": "^3.0.0",
"compression": "^1.7.1",
"cors": "^2.8.4",
"express": "^4.16.2",
"file-stream-rotator": "^0.2.0",
"helmet": "^3.9.0",
"http-status-codes": "^1.3.0",
"iconv-lite": "^0.4.19",
"jsonwebtoken": "^8.1.0",
"mailgun-js": "^0.14.0",
"moment": "^2.20.0",
"morgan": "^1.9.0",
"mysql2": "^1.5.1",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"ramda": "^0.25.0",
"rulr": "^4.0.1",
"sequelize": "^4.27.0",
"sequelize-cli": "^3.2.0",
"source-map-support": "^0.5.0",
"sqlite3": "^3.1.13",
"winston": "^2.4.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transform": {
".(ts|tsx|js|jsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"bail": true,
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"mapCoverage": true,
"testMatch": [
"<rootDir>/src/**/*.test.(ts|js)"
]
}
}