forked from zuzaluorg/zuzalu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "taz-apps",
"description": "Temporary Anonymous Zone applications.",
"license": "MIT",
"repository": "[email protected]:semaphore-protocol/taz-apps.git",
"homepage": "https://github.com/semaphore-protocol/taz-apps",
"bugs": "https://github.com/semaphore-protocol/taz-apps/issues",
"private": true,
"scripts": {
"start:contracts": "yarn workspace contracts start",
"start:web-app": "yarn workspace web-app dev",
"test:contracts": "yarn workspace contracts test",
"test:web-app": "yarn workspace web-app test",
"lint": "eslint . --ext .js,.ts && yarn workspace contracts lint",
"prettier": "prettier -c .",
"prettier:write": "prettier -w ."
},
"keywords": [
"javascript",
"typescript",
"monorepo",
"zero-knowledge",
"semaphore",
"boilerplate"
],
"workspaces": [
"apps/*"
],
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"prettier": "^2.5.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.5.6",
"@supabase/auth-helpers-react": "^0.3.1",
"jdenticon": "^3.2.0",
"nanoid": "^4.0.0"
}
}