-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 810 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 810 Bytes
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
{
"name": "repoflow-sync-service",
"version": "1.0.0",
"description": "RepoFlow Sync Service",
"main": "index.js",
"scripts": {
"start": "ts-node src/server.ts",
"dev": "cat .env.local > .env && nodemon --watch src src/server.ts"
},
"author": "RepoFlow",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"bluebird": "^3.7.2",
"dotenv": "^16.1.4",
"winston": "^3.17.0"
},
"devDependencies": {
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.0",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@swc/core": "1.4.14",
"@types/node": "20.17.12",
"nodemon": "^3.0.2",
"rollup": "^4.24.0",
"terser": "5.30.3",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"keywords": []
}