-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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": "crypto-auth-data",
"version": "0.0.8",
"license": "MIT",
"description": "A simple library to encrypt and decrypt data using AES-256-CBC algorithm",
"repository": {
"type": "git",
"url": "https://github.com/signalhub/tokenized-auth.git"
},
"scripts": {
"build": "nx build",
"test": "nx test",
"generate-key": "cd src/utils && node generate-key.js --secret \"my-secret-key\" --output \"/Users/anton.zaloev/projects/signalhub/tokenized-auth/src/.env\""
},
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@nx/eslint": "18.3.4",
"@nx/eslint-plugin": "18.3.4",
"@nx/js": "18.3.4",
"@nx/vite": "18.3.4",
"@nx/web": "18.3.4",
"@nx/workspace": "18.3.4",
"@swc-node/register": "~1.8.0",
"@swc/core": "~1.3.85",
"@swc/helpers": "~0.5.2",
"@types/jest": "^29.5.12",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"nx": "18.3.4",
"prettier": "^2.6.2",
"typescript": "~5.4.2",
"vite": "~5.0.0",
"vitest": "^1.3.1"
},
"nx": {
"includedScripts": []
},
"type": "commonjs",
"main": "./src/index.js",
"typings": "./src/index.d.ts"
}