forked from platformsh/demo-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.64 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
41
42
43
44
45
{
"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 npm-run-all -l -p clean:*",
"start:backend": "cd backend && ./scripts/start.sh",
"start:frontend": "cd frontend && npm run build && npm run start",
"start": "clear && cross-env FORCE_COLOR=1 npm-run-all -l -p start:*",
"postinstall": "cross-env FORCE_COLOR=1 npm-run-all -l postinstall:*",
"postinstall:backend": "cd backend && ./scripts/build.sh",
"postinstall:frontend": "cd frontend && npm install",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && ./scripts/lint_backend.sh",
"test:frontend": "cd frontend && npm 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 && npm run pretty",
"prettier:frontend:fix": "cd frontend && npm 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",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=18.0.0"
}
}