-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 3.03 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 3.03 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
{
"name": "crawler",
"version": "1.1.0",
"description": "My first godspeed project.",
"main": "dist/index.js",
"scripts": {
"gen-crud-api": "npx @godspeedsystems/api-generator",
"dev": "run-script-os",
"dev:win32": "nodemon --watch src -e ts,js,yaml,json -r dotenv src\\index.ts",
"dev:darwin:linux": "nodemon --watch src -e ts,js,yaml,json -r dotenv ./src/index.ts",
"dev:default": "nodemon --watch src -e ts,js,yaml,json -r dotenv ./src/index.ts",
"build": "run-script-os",
"build:win32": "npm run clean && tsc --noEmit && mkdir dist && npx swc src -d dist --strip-leading-paths && copyfiles -a -u 1 \"src/**/*.!(ts)\" dist && copyfiles -a \"config/**/*\" dist && copyfiles -a -u 2 \"src/mappings/**/*\" \"dist/mappings\" && if exist README.md copy README.md dist\\ && copy tsconfig.json dist\\",
"build:darwin:linux": "npm run clean && tsc --noEmit && mkdir -p dist && npx swc src -d dist --strip-leading-paths && rsync -a --exclude '*.ts' ./src/ ./dist/ && rsync -a ./config/ ./dist/config/ && rsync -a --remove-source-files ./src/mappings/ ./dist/mappings/ && [ -f README.md ] && cp README.md ./dist/ || true && cp tsconfig.json ./dist/",
"build:default": "npm run clean && tsc --noEmit && rsync -a --exclude '*.ts' ./src/ ./dist/ && rsync -a ./config/ ./dist/config && rsync -a ./src/mappings/ ./dist/mappings",
"preview": "run-script-os",
"preview:win32": "node dist\\index.js",
"preview:darwin:linux": "node dist/index.js",
"preview:default": "node dist/index.js",
"clean": "run-script-os",
"clean:win32": "if exist dist rmdir /s /q dist",
"clean:darwin:linux": "rm -rf dist",
"clean:default": "rm -rf dist",
"serve": "npm run clean && nodemon --watch src --watch config --watch mappings -e ts,js,yaml,json,.env --exec \"npm run build && npm run preview\"",
"test": "jest --detectOpenHandles --forceExit"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.7.7",
"@swc/core": "^1.11.24",
"@types/axios": "^0.14.4",
"@types/cheerio": "^0.22.35",
"@types/config": "^3.3.5",
"@types/jest": "^30.0.0",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.15.19",
"@types/pdf-parse": "^1.1.5",
"@types/uuid": "^10.0.0",
"cheerio": "^1.1.2",
"copyfiles": "^2.4.1",
"jest": "^30.0.5",
"nodemon": "^3.1.10",
"run-script-os": "^1.1.6",
"ts-jest": "^29.4.1",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@godspeedsystems/core": "^2.5.5",
"@godspeedsystems/plugins-axios-as-datasource": "^1.0.6",
"@godspeedsystems/plugins-cron-as-eventsource": "^1.0.0",
"@godspeedsystems/plugins-express-as-http": "^1.0.33",
"@prisma/client": "^6.8.2",
"axios": "^1.11.0",
"config": "^4.0.0",
"cron-parser": "^5.3.0",
"dotenv": "^16.5.0",
"google-auth-library": "^10.2.0",
"googleapis": "^154.1.0",
"pdf-parse": "^1.1.1",
"pino-pretty": "^13.0.0",
"prisma": "^6.8.2",
"simple-git": "^3.28.0",
"uuid": "^11.1.0"
}
}