-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (45 loc) · 1.58 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
{
"name": "web-vault",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "NEXT_MANUAL_SIG_HANDLE=true next start",
"lint": "next lint",
"single_tests": "TESTING=true REDIS=true ./ts_node.sh test/single_tests.ts",
"auth_tests_local": "TESTING=true ./ts_node.sh test/auth_tests.ts",
"auth_tests_redis": "TESTING=true REDIS=true ./ts_node.sh test/auth_tests.ts",
"vault_tests_local": "TESTING=true ./ts_node.sh test/vault_tests.ts",
"vault_tests_redis": "TESTING=true REDIS=true ./ts_node.sh test/vault_tests.ts",
"controller_tests_local": "TESTING=true ./ts_node.sh test/controller_tests.ts",
"controller_tests_redis": "TESTING=true REDIS=true ./ts_node.sh test/controller_tests.ts",
"file_tests": "TESTING=true REDIS=true ./ts_node.sh test/file_tests.ts",
"backend_tests": "bash test/test_backend.sh",
"api_tests": "TESTING=true ./ts_node.sh test/api_tests.ts"
},
"dependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"axios": "^1.6.8",
"eslint": "^8.41.0",
"eslint-config-next": "^14.1.0",
"ioredis": "^5.2.5",
"jwt-km": "^1.0.4",
"next": ">=14.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shiki": "0.14.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.23",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1"
}
}