-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "shopping-site-api",
"version": "1.0.0",
"desciption": "Shopping site API server.",
"cacheDirectories": [
"node_modules"
],
"repository": {
"type": "git",
"url": "https://github.com/azxy-apps/shoping-site.git"
},
"scripts": {
"start": "NODE_ENV=production node dist/server.js",
"start:dev": "NODE_ENV=development nodemon app.ts",
"heroku-postbuild": "npm run build",
"build": "npm run tslint && tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"dev": "nodemon"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/server.ts",
"ignore": [
"*.test.ts"
]
},
"dependencies": {
"@types/bunyan": "^1.8.5",
"@types/express": "^4.16.0",
"@types/mongodb": "^3.1.11",
"@types/mongoose": "^5.2.19",
"@types/morgan": "^1.7.35",
"@types/node": "^10.11.4",
"@types/shelljs": "^0.8.0",
"bunyan": "^1.8.12",
"concurrently": "^4.0.1",
"express": "^4.16.3",
"express-request-id": "^1.4.1",
"lodash": "^4.17.11",
"mongodb": "^3.1.6",
"mongoose": "^5.3.2",
"morgan": "^1.9.1",
"nodemailer": "^4.6.8",
"nodemon": "^1.18.4",
"ts-node": "^7.0.1",
"typescript": "^3.1.1",
"xoauth2": "^1.2.0"
},
"devDependencies": {
"@types/debug": "0.0.31",
"chalk": "^2.4.1",
"debug": "^4.1.0",
"tslint": "^5.11.0"
}
}