-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.65 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
{
"name": "blog-nodejs-ts",
"version": "1.0.0",
"scripts": {
"build": "node ./util/build.js",
"lint": "tslint --project \"tsconfig.json\"",
"test": "cross-env ENV_FILE=test ts-node -r ./env -r tsconfig-paths/register ./spec/start.ts",
"start": "cross-env ENV_FILE=production node -r ./env -r module-alias/register ./dist/start.js",
"start-dev": "nodemon --config \"./util/nodemon.json\""
},
"repository": {
"type": "git",
"url": "https://github.com/usmansaleem/blog-nodejs-ts.git"
},
"author": {
"name": "Usman Saleem",
"email": "usman@usmans.info",
"url": "https://usmans.info"
},
"license": "MIT",
"_moduleAliases": {
"@daos": "dist/daos",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server",
"@datapath": "dist/DataPath"
},
"dependencies": {
"cookie-parser": "^1.4.4",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"hbs": "^4.0.6",
"http-status-codes": "^1.3.2",
"module-alias": "^2.2.2",
"moment": "^2.24.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.1",
"@types/find": "^0.2.1",
"@types/jasmine": "^3.4.4",
"@types/jsonfile": "^6.0.0",
"@types/morgan": "^1.7.37",
"@types/node": "^14.0.13",
"@types/supertest": "^2.0.8",
"find": "^0.3.0",
"fs-extra": "^9.0.1",
"jasmine": "^3.5.0",
"jsonfile": "^6.0.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"typescript": "^3.6.4"
}
}