-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 881 Bytes
/
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
{
"name": "garbled-circuits",
"version": "1.0.0",
"description": "A toy garbled circuits MPC implementation",
"main": "src/index.js",
"repository": "https://github.com/tdjsnelling/garbled-circuits",
"author": "Tom Snelling",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"dev": "concurrently --passthrough-arguments --kill-others \"yarn build --watch\" \"nodemon --enable-source-maps dist/index.js {1}\"",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {}
}