-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 4.29 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "learn_node_ts",
"version": "1.0.0",
"description": "A sample express app using typescript and mongoDB",
"engines": {
"node": "10.x"
},
"scripts": {
"dev": "ENV=dev ts-node ./src/index.ts",
"test": "ENV=test jest --runInBand --testTimeout=15000 --coverage",
"add-sample-data": "ts-node ./src/data/sample-data.ts",
"delete-sample-data": "ts-node ./src/data/sample-data.ts --delete",
"email": "ts-node ./src/handlers/mail.ts --configEnvironment=test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alias8/LearnNode-TS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alias8/LearnNode-TS/issues"
},
"homepage": "https://github.com/alias8/LearnNode-TS#readme",
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"jest": {
"verbose": true,
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
],
"ignore": [
"node_modules",
"coverage"
]
},
"devDependencies": {
"@types/autoprefixer": "^9.4.0",
"@types/axios": "^0.14.0",
"@types/connect-flash": "0.0.34",
"@types/connect-mongo": "0.0.41",
"@types/cookie-parser": "^1.4.1",
"@types/copy-webpack-plugin": "^5.0.0",
"@types/dompurify": "0.0.32",
"@types/dotenv": "^6.1.1",
"@types/es6-promisify": "^6.0.0",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/express-validator": "^3.0.0",
"@types/extract-text-webpack-plugin": "^3.0.4",
"@types/googlemaps": "^3.30.19",
"@types/html-to-text": "^1.4.31",
"@types/jest": "^24.0.18",
"@types/jimp": "^0.2.28",
"@types/jsdom": "^12.2.3",
"@types/lodash": "^4.14.141",
"@types/md5": "^2.1.33",
"@types/mini-css-extract-plugin": "^0.2.0",
"@types/mongoose": "^5.3.26",
"@types/multer": "^1.3.7",
"@types/node": "^11.13.4",
"@types/nodemailer": "^6.2.1",
"@types/optimize-css-assets-webpack-plugin": "^1.3.4",
"@types/passport": "^1.0.0",
"@types/passport-local-mongoose": "^4.0.12",
"@types/pug": "^2.0.4",
"@types/supertest": "^2.0.8",
"@types/terser-webpack-plugin": "^1.2.1",
"@types/uuid": "^3.4.4",
"@types/validator": "^10.11.0",
"@types/webpack-dev-server": "^3.1.5",
"@types/webpack-node-externals": "^1.6.3",
"@types/yargs": "^13.0.0",
"autoprefixer": "^9.5.1",
"clean-webpack-plugin": "^2.0.1",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.17.0",
"sass-loader": "^7.1.0",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^1.3.0",
"ts-jest": "^24.1.0",
"ts-loader": "^5.3.3",
"ts-node": "8.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.4.1",
"webpack-node-externals": "^1.7.2",
"yargs": "^13.2.4"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"build": "^0.1.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.3",
"cookie-parser": "^1.4.4",
"dompurify": "^1.0.10",
"dotenv": "^7.0.0",
"es6-promisify": "^6.0.1",
"express": "^4.16.4",
"express-session": "^1.16.1",
"express-validator": "^5.3.1",
"html-to-text": "^5.1.1",
"jimp": "^0.6.1",
"jsdom": "^15.0.0",
"juice": "^5.2.0",
"lodash": "^4.17.15",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mongoose": "^5.5.2",
"mongoose-mongodb-errors": "0.0.2",
"multer": "^1.4.1",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-local-mongoose": "^5.0.1",
"pug": "^2.0.3",
"slugs": "^0.1.3",
"uuid": "^3.3.2",
"validator": "^10.11.0"
}
}