forked from w3tecch/express-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
{
"name": "express-typescript-boilerplate",
"version": "4.0.0",
"description": "A delightful way to building a Node.js RESTful API Services with beautiful code written in TypeScript",
"main": "src/app.ts",
"scripts": {
"setup": "yarn install",
"start": "nps",
"build": "npm start build",
"serve": "npm start serve",
"unit-test": "nps start unit-test",
"integration-test": "nps start integration-test",
"test": "nps start unit-test && nps start integration-test"
},
"engines": {
"node": ">=8.0.0"
},
"repository": "git+ssh://[email protected]/baradigm/express-typescript-boilerplate.git",
"keywords": [
"NodeJS",
"TypeScript",
"express",
"boilerplate",
"skeleton",
"starter-kit",
"Baradigm"
],
"homepage": "https://github.com/baradigm/express-typescript-boilerplate",
"author": "Baradigm <[email protected]>",
"contributors": [
{
"name": "Baradigm",
"email": "[email protected]",
"url": "https://github.com/baradigm"
}
],
"dependencies": {
"bcrypt": "5.0.0",
"chalk": "2.4.2",
"commander": "2.19.0",
"compression": "1.7.4",
"copyfiles": "^2.1.0",
"cors": "2.8.5",
"express": "4.17.1",
"figlet": "1.5.0",
"jsonfile": "5.0.0",
"morgan": "1.10.0",
"nps": "5.10.0",
"nps-utils": "1.7.0",
"ts-node": "7.0.1",
"tslint": "5.20.1",
"typescript": "3.9.7",
"winston": "3.3.3"
},
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "2.0.0",
"@types/chalk": "2.2.0",
"@types/commander": "2.12.2",
"@types/cors": "2.8.8",
"@types/expect": "^24.3.0",
"@types/express": "4.17.9",
"@types/figlet": "1.2.1",
"@types/mocha": "^8.0.4",
"@types/morgan": "1.9.2",
"@types/node": "14.14.10",
"@types/winston": "2.4.4",
"mocha": "^8.2.1",
"nodemon": "1.19.4",
"ts-mocha": "^8.0.0"
}
}