-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.09 KB
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
{
"name": "typeground",
"version": "1.1.1",
"description": "Back end application framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run clean && npm run tsc && node --inspect ./bin/www",
"clean": "node ./node_modules/rimraf/bin.js ./dist/",
"tsc": "node ./node_modules/typescript/bin/tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"prepublish": "npm run clean && npm run tsc"
},
"keywords": [
"starter",
"express",
"typescript"
],
"files": [
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts",
"dist/src/server.js",
"dist/src/server.js.map",
"dist/src/server.d.ts",
"dist/src/core/*",
"dist/src/error-handlers/*"
],
"author": "Nick Ro",
"license": "MIT",
"dependencies": {
"amqplib": "^0.5.3",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"class-validator": "^0.9.1",
"config": "^3.1.0",
"cookie-parser": "^1.4.4",
"db-migrate": "^0.11.6",
"db-migrate-pg": "^1.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"swagger-jsdoc": "^3.3.0",
"swagger-ui-express": "^4.0.7",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/config": "0.0.34",
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.32",
"@types/method-override": "0.0.31",
"@types/mocha": "^5.2.7",
"@types/morgan": "^1.7.35",
"@types/node-fetch": "^2.3.7",
"@types/sinon": "^7.0.13",
"@types/sinon-chai": "^3.2.2",
"@types/swagger-jsdoc": "0.0.2",
"@types/swagger-ui-express": "^3.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}