-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 2.7 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "zkemail_test",
"version": "1.3.0",
"main": "dist",
"types": "dist",
"license": "MIT",
"scripts": {
"gates": "cd scripts && sh info.sh && cd ..",
"compile": "nargo compile --force --silence-warnings",
"test": "jest"
},
"dependencies": {
"@aztec/bb.js": "0.66.0",
"@mach-34/noir-bignum-paramgen": "^1.1.0",
"@noir-lang/noir_js": "1.0.0-beta.1",
"@noir-lang/noirc_abi": "^1.0.0-beta.1",
"@zk-email/helpers": "^6.3.2",
"@zk-email/zkemail-nr": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "7",
"@typescript-eslint/parser": "7",
"babel-jest": "^29.7.0",
"babel-preset-jest": "^29.5.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "5.5"
},
"files": [
"dist/**/**",
"docs/**/**",
"!**/*.spec.*",
"!**/*.json",
"!**/*.tsbuildinfo",
"LICENSE",
"README.md"
],
"jest": {
"roots": [
"<rootDir>"
],
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"testTimeout": 10000000
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript",
[
"jest"
]
]
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"airbnb-base",
"airbnb-typescript/base"
],
"ignorePatterns": [
"src/lib/**/*",
"tests/**/*",
"dist",
"node_modules"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"max-len": [
"error",
{
"code": 150
}
],
"object-curly-newline": "off",
"operator-linebreak": "off",
"@typescript-eslint/quotes": "off",
"@typescript-eslint/comma-dangle": "off",
"import/prefer-default-export": "off",
"no-await-in-loop": "off",
"no-restricted-syntax": "off",
"no-plusplus": "off",
"no-bitwise": "off",
"no-console": "off",
"no-continue": "off",
"@typescript-eslint/no-use-before-define": "off",
"prefer-destructuring": "off"
}
}
}