-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1007 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1007 Bytes
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
{
"name": "subscription-service",
"version": "1.0.0",
"description": "Subscription Service",
"license": "ISC",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts --watch src",
"start-prod": "NODE_ENV=prod nodemon --exec ts-node src/index.ts",
"mailer": "ts-node src/mailer.ts"
},
"dependencies": {
"axios": "^0.19.0",
"core-util-is": "^1.0.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"morgan": "^1.9.1",
"nodemailer": "^4.4.1",
"sequelize": "^5.15.1",
"sqlite3": "^4.0.9",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/express": "^4.0.35",
"@types/node": "^7.0.52",
"@types/nodemailer": "^4.3.1",
"@types/sequelize": "^4.28.4",
"@types/winston": "^2.3.7",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"pdfkit": "^0.8.3",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"ts-node": "^4.0.2",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"resolutions": {
"natives": "1.1.6"
}
}