-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.94 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
{
"name": "expresso",
"version": "0.1.2",
"description": "A modern express framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"install": "tsc -p .",
"lint": "eslint . --ext .ts,.tsx",
"test": "ts-mocha",
"test:coverage": "nyc --reporter=text-summary --reporter=lcov --reporter=cobertura ts-mocha --reporter=mocha-junit-reporter",
"cli": "node ./dist/bin",
"typeorm": "ts-node node_modules/typeorm/cli.js"
},
"bin": {
"expresso": "./dist/bin/index.js"
},
"keywords": [
"expresso",
"express",
"framework"
],
"author": "Evan Darwin <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/minimist": "^1.2.1",
"@types/sass": "^1.16.0",
"@types/uuid": "^8.3.0",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jsx-xml": "^0.2.3",
"minimist": "^1.2.5",
"preact-render-to-string": "^5.1.12",
"reflect-metadata": "^0.1.13",
"sass": "^1.32.5",
"tslog": "^3.1.0",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"optionalDependencies": {
"typeorm": "^0.2.30"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-http": "^4.2.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.18.0",
"eslint-formatter-gitlab": "^2.1.0",
"eslint-plugin-security": "^1.4.0",
"express": "^4.17.1",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"pg": "^8.5.1",
"preact": "^10.5.11",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"typeorm": "^0.2.30"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
}