-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.3 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
{
"name": "monoduck",
"version": "0.2.3-dev",
"description": "",
"source": "src/index-monoduck.ts",
"main": "dist/index-monoduck.js",
"types": "dist/index-monoduck.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest src/",
"test-utilduck": "jest src/utilduck/",
"test-sqlduck": "jest src/sqlduck/",
"test-lookduck": "jest src/lookduck/",
"test-patchduck": "jest src/patchduck/",
"test-tapiduck-eg": "jest src/examples/examples-tapiduck",
"test-rainduck": "jest src/rainduck/",
"lint": "ts-standard --fix",
"build": "rm -rf dist && tsc && rm -rf dist/examples",
"prepack": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumukhbarve/monoduck.git"
},
"keywords": [],
"author": "Sumukh Barve",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sumukhbarve/monoduck/issues"
},
"homepage": "https://github.com/sumukhbarve/monoduck#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.3.2",
"@parcel/transformer-typescript-types": "^2.3.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node-fetch": "^2.6.2",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"express": "^4.17.3",
"jest": "^27.5.1",
"node-fetch": "^2.6.7",
"parcel": "^2.3.2",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sequelize": "^6.17.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"sqlite3": "^5.0.8",
"ts-jest": "^27.1.3",
"ts-node-dev": "^2.0.0",
"ts-standard": "^11.0.0",
"typescript": "^4.6.2",
"zod": "^3.14.1",
"zod-to-json-schema": "^3.20.4"
},
"peerDependencies": {
"express": "^4.17.3",
"node-fetch": "^2.6.7",
"react": "^17.0.2",
"sequelize": "^6.17.0",
"zod": "^3.14.1",
"zod-to-json-schema": "^3.20.4"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"node-fetch": {
"optional": true
},
"react": {
"optional": true
},
"sequelize": {
"optional": true
},
"zod": {
"optional": true
},
"zod-to-json-schema": {
"optional": true
}
}
}