-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ts-web-framework",
"version": "1.7.4",
"description": "A Web Server Framework ideal for create REST api's with TypeScript",
"repository": "https://github.com/TypeScript-Web-Framework/ts-web-framework.git",
"main": "dist/bundle.js",
"scripts": {
"start": "node dist/bundle.js",
"build": "webpack --mode development",
"serve": "npm run build && npm run start",
"test": "mocha dist/bundle.js --reporter spec",
"pretest": "webpack --mode none",
"pkg": "npm test && webpack --mode production && pkg -t node6 --out-path ./bin --options max_old_space_size=4096 .",
"creator": "./bin/"
},
"author": "Olaf Erlandsen C.",
"contributors": [
{
"name": "Olaf Erlandsen C.",
"email": "olaftriskel@gmail.com"
}
],
"license": "MIT",
"keywords": [
"ts",
"web",
"framework",
"http",
"server",
"api",
"rest"
],
"bugs": {
"url": "https://github.com/TypeScript-Web-Framework/ts-web-framework/issues",
"email": "olaftriskel@gmail.com"
},
"homepage": "https://github.com/TypeScript-Web-Framework/ts-web-framework",
"dependencies": {
"ansi-colors": "^3.0.0",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.4",
"csurf": "^1.9.0",
"debug": "^4.0.0",
"express": "^4.14.0",
"express-session": "^1.15.6",
"helmet": "^3.12.1",
"lodash": "^4.17.10",
"morgan": "^1.7.0",
"reflect-metadata": "^0.1.12",
"snyk": "^1.88.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.3",
"@types/csurf": "^1.9.35",
"@types/debug": "4.1.3",
"@types/express": "^4.0.33",
"@types/helmet": "0.0.42",
"@types/lodash": "^4.14.108",
"@types/mocha": "^5.2.0",
"@types/morgan": "^1.7.32",
"@types/node": "^11.9.0",
"@types/rx": "^4.1.1",
"@types/ua-parser-js": "^0.7.32",
"chai": "^4.1.2",
"clean-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.5.2",
"glob": "^7.1.2",
"mocha": "^11.0.1",
"supertest": "^4.0.0",
"ts-loader": "^4.4.2",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"pkg": {
"scripts": [
"dist/**/*.js"
],
"assets": [
"dist/**/*.json",
"dist/**/*.jpg",
"dist/**/*.gif",
"dist/**/*.png",
"dist/**/*.jpeg",
"dist/**/*.txt",
"dist/**/*.pem",
"dist/**/*.html",
"dist/**/*.css"
]
},
"bin": "dist/bundle.js"
}