-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1.81 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
{
"name": "jasma",
"version": "0.1.0",
"private": true,
"description": "JASMA-launcher",
"homepage": "https://github.com/steph-koopmanschap/jasma#readme",
"author": "Steph Koopmanschap and Others",
"license": "Apache-2.0",
"keywords": [
"socialmedia"
],
"engines": {
"node": "^18",
"npm": "^8"
},
"scripts": {
"copycompose:dev": "cp docker-compose-development.yml docker-compose.yml",
"copycompose:prod": "cp docker-compose-production.yml docker-compose.yml",
"composebuild": "docker-compose up --build",
"prepare-legacy": "cd backend && chmod u+x start_legacy.sh && ./start_legacy.sh",
"dev": "concurrently -n 'backend,frontend' -c '#04FCF1,#9c143f' \"cd backend && python manage.py runserver\" \"cd frontend && npm run dev\"",
"start": "concurrently -n 'backend,frontend' -c '#9c143f,#85590d' \"cd backend && python manage.py runserver && npm run start\" \"cd next && npm run start\"",
"build": "cd backend && npm run build && cd ..",
"install:all": "cd compose/local/django && pip install -r requirements.txt --user && cd ../../frontend && npm install",
"start:all": "gnome-terminal --window --title=JASMA-API -x sh -i -c \"cd backend && python manage.py runserver\" && gnome-terminal --window --title=JASMA-NEXT -x sh -i -c \"cd frontend && npm run start\"",
"db:init": "cd backend && python manage.py genfakedb 50",
"db:resetTables": "cd backend && python manage.py flush",
"code": "code -n \"$PWD\""
},
"devDependencies": {
"concurrently": "^7.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steph-koopmanschap/jasma.git"
},
"bugs": {
"url": "https://github.com/steph-koopmanschap/jasma/issues"
}
}