-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.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
{
"name": "ffc-server",
"version": "2.2.1",
"description": "Basic HTTP Server with FFC-Node and some default configs",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"author": "Freshfox OG",
"license": "MIT",
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc",
"preversion": "git pull && yarn build && yarn test",
"postversion": "git push --follow-tags && npm publish",
"test": "NODE_ENV=test mocha dist/test --recursive"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.7",
"@types/reflect-metadata": "^0.1.0",
"@types/should": "^13.0.0",
"express": "^4.17.1",
"mocha": "^6.2.2",
"should": "^13.2.3",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express-json-views": "^0.2.2",
"inversify": "^5.0.1",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1"
}
}