-
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.3 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.3 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": "organizator",
"version": "1.1.0",
"description": "Organizator, page when you can share ideas!",
"main": "index.js",
"scripts": {
"start": "node scripts/beforeStart.mjs && concurrently \"cd ./client && npm run dev\" \"cd ./server && npm run start\"",
"start:dev": "node scripts/beforeDevStart.mjs && concurrently \"cd ./client && npm run gctw\" \"cd ./server && npm run watch\"",
"start:all": "node scripts/beforeDevStart.mjs && concurrently \"npm run start:dev\" \"npm run start\"",
"start:normal_server": "node scripts/beforeStart.mjs && concurrently \"cd ./client && npm run dev\" \"cd ./server && npm run start\"",
"dev:install": "npm ci && cd client && npm ci --force && cd ../server && npm ci --force",
"dev:setup:env": "cd client && npm run setupEnv && cd ../server && npm run setupEnv",
"dev:build": "cd ./server && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hostek/Organizator.git"
},
"author": "Hostek",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hostek/Organizator/issues"
},
"homepage": "https://github.com/Hostek/Organizator#readme",
"devDependencies": {
"chalk": "^5.3.0",
"concurrently": "^9.1.0"
}
}