This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
107 lines (107 loc) · 2.67 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
98
99
100
101
102
103
104
105
106
107
{
"name": "odi",
"version": "0.3.93",
"description": "🌪🌌 Opinionated, Declarative, Idiomatic framework for building scalable, supportable, enterprise-grade applications.",
"main": "lib/src/index.js",
"homepage": "https://github.com/Odi-ts/Odi#readme",
"repository": {
"type": "git",
"url": "https://github.com/Odi-ts/Odi.git"
},
"keywords": [
"typesciprt",
"web",
"server",
"DI",
"enterprise",
"esnext",
"backend"
],
"typings": "lib/src/index.d.ts",
"scripts": {
"test": "nyc --reporter=lcov mocha test/**/*.test.ts --exit",
"build": "rm -rf ./lib && tsc",
"pack": "npm run build && npm pack",
"integration": "tsc && node lib/test/integration/index.js",
"bench": "node benchmark/bench"
},
"bin": {
"odi": "./lib/cli/index.js"
},
"author": "Dan T",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/cheerio": "^0.22.12",
"@types/esprima": "^4.0.2",
"@types/express": "^4.17.0",
"@types/globby": "^9.1.0",
"@types/inquirer": "6.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^11.13.9",
"@types/ora": "^3.2.0",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"@types/socket.io-client": "^1.4.32",
"autocannon": "^3.2.2",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.2",
"istanbul": "^0.4.5",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.2.0",
"node-mocks-http": "^1.7.6",
"nyc": "^14.1.1",
"openapi-types": "^1.3.5",
"parcel-bundler": "^1.12.3",
"pg": "^7.11.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"socket.io-client": "^2.2.0",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.5.3",
"typeorm": "0.2.16"
},
"dependencies": {
"@types/cls-hooked": "^4.3.0",
"@types/fastify-static": "^2.2.1",
"@types/parcel-bundler": "^1.12.0",
"ajv": "^6.10.2",
"chalk": "^2.4.2",
"cls-hooked": "^4.2.2",
"commander": "^2.20.0",
"espree": "^5.0.1",
"fastify": "^2.7.1",
"fastify-cookie": "^3.0.2",
"fastify-static": "^2.5.0",
"gauge": "^2.7.4",
"globby": "^9.2.0",
"inquirer": "^6.5.1",
"reflect-metadata": "^0.1.13",
"ts-morph": "^2.3.0"
},
"optionalDependencies": {
"socket.io": "^2.1.1",
"@types/socket.io": "^1.4.38"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"src/worker/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
}
}