-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.94 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
65
66
67
68
69
70
71
72
{
"name": "evolution-api",
"version": "0.0.1",
"author": "Christoffer Bo Petersen",
"license": "MIT",
"private": true,
"description": "",
"main": "server.js",
"scripts": {
"start": "npm run build && node dist/server.js",
"build": "npm run build-ts && npm run tslint",
"serve": "bun --watch --inspect run server.ts",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"bun run serve\"",
"test": "bun test",
"watch-test": "bun test --watch",
"build-ts": "bun build",
"watch-ts": "bun build -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"tslint-fix": "npm run tslint -- --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Test\" -c \"green.bold,blue.bold\" \"bun serve\" \"bun watch-test\""
},
"keywords": [
"awesome"
],
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "20.19.43",
"@types/body-parser": "1.19.6",
"@types/cors": "2.8.19",
"@types/lodash": "4.17.24",
"@types/morgan": "1.9.10",
"concurrently": "8.2.2",
"jest": "29.7.0",
"nodemon": "3.1.14",
"standard": "17.1.2",
"ts-jest": "29.4.11",
"tslint": "6.1.3",
"typescript": "5.9.3"
},
"dependencies": {
"body-parser": "1.20.5",
"cors": "2.8.6",
"express": "4.22.2",
"lodash": "4.18.1",
"mongodb": "^6.5.0",
"morgan": "1.11.0",
"snappy": "^7.2.2",
"tingodb": "0.6.1",
"uuid": "^13.0.0"
},
"jest": {
"verbose": true,
"globals": {
"ts-jest": {
"skipBabel": true
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
}
}