-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "test1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"start": "node dist/index.js",
"dev": "npm run build && npm start",
"dev:ts": "ts-node src/main.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/leveldown": "^4.0.6",
"@types/node": "^20.11.5",
"@types/pg": "8.11.0",
"@types/snarkjs": "0.7.8",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"eslint": "8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-loader": "9.5.1",
"ts-node": "^10.9.2",
"typescript": "5.3.3",
"webpack": "5.90.0",
"webpack-cli": "5.1.4",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"@railgun-community/engine": "^7.2.3",
"@railgun-community/shared-models": "^6.3.1",
"@railgun-community/wallet": "^7.2.3",
"dotenv": "^16.3.1",
"ethers": "github:Railgun-Community/ethers.js#v6.7.10",
"fake-indexeddb": "^5.0.2",
"level": "^8.0.0",
"leveldown": "6.1.1",
"pg": "8.11.3",
"snarkjs": "0.7.3"
}
}