-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.07 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.07 KB
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
{
"name": "encryptx",
"version": "1.6.1",
"description": "EncryptX - A file encryption service with frontend and backend",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd encryptx-backend && cargo run",
"dev:frontend": "cd encryptx-frontend && npm run dev",
"build": "concurrently \"npm run build:backend\" \"npm run build:frontend\"",
"build:backend": "cd encryptx-backend && cargo build --release",
"build:frontend": "cd encryptx-frontend && npm run build",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd encryptx-backend && cargo run --release",
"start:frontend": "cd encryptx-frontend && npm run start",
"test": "concurrently \"npm run test:backend\" \"npm run test:frontend\"",
"test:backend": "cd encryptx-backend && cargo test",
"test:frontend": "cd encryptx-frontend && npm run test"
},
"devDependencies": {
"concurrently": "^8.0.0"
},
"keywords": [
"encryption",
"file-encryption",
"security"
],
"author": "AmitxD",
"license": "MIT"
}