-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (47 loc) · 1.87 KB
/
package.json
File metadata and controls
55 lines (47 loc) · 1.87 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@platformsh/demo-project",
"version": "1.0.0",
"description": "A guided tour of Upsun features and CLI",
"main": "index.js",
"scripts": {
"clean:backend": "cd backend && ./scripts/clean.sh",
"clean:frontend": "cd frontend && ./scripts/clean.sh",
"clean": "clear && cross-env FORCE_COLOR=1 concurrently -n front,back -c blue,green \"bun run clean:frontend\" \"bun run clean:backend\"",
"start:backend": "cd backend && ./scripts/start.sh",
"start:frontend": "cd frontend && bun run start",
"start": "clear && cross-env FORCE_COLOR=1 concurrently -n front,back -c blue,green \"bun run start:frontend\" \"bun run start:backend\"",
"postinstall:backend": "cd backend && ./scripts/build.sh",
"postinstall:frontend": "cd frontend && bun install",
"postinstall": "cross-env FORCE_COLOR=1 concurrently -n front,back -c blue,green \"bun run postinstall:frontend\" \"bun run postinstall:backend\"",
"lint:frontend": "cd frontend && bun run lint",
"lint:backend": "cd backend && ./scripts/lint_backend.sh",
"test:frontend": "cd frontend && bun run test",
"test:backend": "cd backend && ./scripts/test.sh",
"prettier:backend": "cd backend && ./scripts/prettier_backend.sh",
"prettier:backend:fix": "cd backend && black .",
"prettier:frontend": "cd frontend && bun run pretty",
"prettier:frontend:fix": "cd frontend && bun run pretty:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platformsh/demo-project.git"
},
"keywords": [
"demo"
],
"author": "Platform.sh",
"license": "MIT",
"bugs": {
"url": "https://github.com/platformsh/demo-project/issues"
},
"homepage": "https://github.com/platformsh/demo-project#readme",
"dependencies": {
"cross-env": "^7.0.3"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}