-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.05 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
{
"name": "caesar-cipher",
"version": "1.0.0",
"description": "Caesar Cipher is an encryption algorithm where characters in a word or a phrase are shifted up or down in the alphabet based on the offset. This is a full-stack solution for this algorithm, where users can provide a word or phrase and an offset and get the corresponding encryption.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install-frontend": "cd angular-frontend && npm install",
"install-backend": "cd nest-backend && npm install",
"install-dependencies": "npm run install-frontend && npm run install-backend",
"frontend": "cd angular-frontend && ng serve",
"backend": "cd nest-backend && nest start",
"dev": "npm run backend & npm run frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VoChrisK/caesar-cipher.git"
},
"author": "Chris Vo",
"license": "ISC",
"bugs": {
"url": "https://github.com/VoChrisK/caesar-cipher/issues"
},
"homepage": "https://github.com/VoChrisK/caesar-cipher#readme"
}