-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.45 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
{
"name": "web3-rpc-provider",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/bootstrap.ts",
"start:debug": "node --inspect --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/bootstrap.ts",
"start:prod": "node ./dist/bootstrap.js",
"test": "jest --forceExit --passWithNoTests",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --debug --forceExit --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"clean": "rimraf build && rimraf dist",
"build": "swc src --strip-leading-paths --config-file .swcrc -d dist",
"build:watch": "swc src --strip-leading-paths --config-file .swcrc -d dist -w"
},
"keywords": [],
"author": "[email protected]<xxamxx>",
"license": "MIT",
"engines": {
"node": "v20.17.0"
},
"devDependencies": {
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.23",
"@swc/jest": "^0.2.36",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.3",
"expect-puppeteer": "^10.1.0",
"jest": "^29.7.0",
"jest-environment-puppeteer": "^10.1.0",
"jest-puppeteer": "^10.1.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"express": "^4.19.2",
"puppeteer-core": "^23.2.1"
}
}