-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 996 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 996 Bytes
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
{
"name": "taskmanager",
"version": "0.9",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run start:frontend\" \"npm run start:server\"",
"start:frontend": "cd frontend && ng serve",
"start:frontend-pl": "cd frontend && ng serve --configuration=pl-PL --open --port 4201",
"start:frontend-cs": "cd frontend && ng serve --configuration=cs-CS --open --port 4202",
"start:server": "cd server && node server.js",
"start-pl": "concurrently \"npm run start:frontend-pl\" \"npm run start:server\"",
"start-cs": "concurrently \"npm run start:frontend-cs\" \"npm run start:server\"",
"install-all": "npm install && cd Frontend && npm install && cd ../Server && npm install && cd ..",
"extract-translation": "cd Frontend && ng extract-i18n --output-path src/locale"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"all": "^0.0.0"
}
}