-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "bajacore",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"bench": "npx ts-node src/benchmarking/idlookup.bench.ts",
"dev": "npx nodemon",
"run": "ts-node src/index.ts",
"build": "tsc src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/binary-parser": "^1.5.1",
"@types/cloneable-readable": "^2.0.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@types/nanotimer": "^0.3.0",
"@types/node": "^16.11.10",
"@types/papaparse": "^5.3.2",
"@types/uuid": "^8.3.3",
"@types/ws": "^8.2.2",
"benchmark": "^2.1.4",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"serve": "^13.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0"
},
"dependencies": {
"c-type-util": "^3.0.0",
"chalk": "^4.1.2",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"joi": "^17.5.0",
"lodash": "^4.17.21",
"mqtt": "^4.3.4",
"nanotimer": "^0.3.15",
"on-change": "^2.2.3",
"papaparse": "^5.3.1",
"socket.io": "^4.4.0",
"tiny-typed-emitter": "^2.1.0",
"typescript": "^4.6.2",
"uuid": "^8.3.2",
"winston": "^3.5.1",
"ws": "^7.5.6"
},
"jest": {
"transform": {
"^.+\\.(ts|js|html)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}