-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "dfinance-sync",
"version": "1.0.0",
"description": "Periodically sync canister data to offchain sqlite database.",
"type": "module",
"main": "index.js",
"scripts": {
"start:compile": "tsc && node --trace-warnings build/index.js",
"start:dev": "nodemon -e ts --exec npm run start:compile",
"test": "node ./node_modules/mocha/bin/mocha --loader=ts-node/esm --extension ts tests/**/*.test.ts",
"start:prod": "npm run start:compile && pm2 start -r dotenv/config build/index.js",
"lint": "eslint --fix --cache --ext .js,.ts --format=pretty ./src"
},
"author": "",
"license": "MIT",
"dependencies": {
"@dfinity/agent": "^0.10.0",
"@dfinity/candid": "^0.10.0",
"@dfinity/principal": "^0.10.0",
"@koa/router": "^10.1.1",
"@ladjs/graceful": "^1.0.5",
"@types/koa__router": "^8.0.8",
"better-sqlite3": "^7.4.3",
"bree": "^6.3.1",
"cabin": "^9.0.4",
"koa": "^2.13.3",
"koa-bodyparser": "^4.3.0",
"koa2-cors": "^2.0.6",
"node-fetch": "^3.0.0",
"signale": "^1.4.0",
"sqlite": "^4.0.23"
},
"devDependencies": {
"@mapbox/node-pre-gyp": "^1.0.5",
"@types/better-sqlite3": "^7.4.0",
"@types/bree": "^6.2.1",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"@types/signale": "^1.4.2",
"@types/sqlite3": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-formatter-pretty": "^4.1.0",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"pm2": "^5.1.2",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}