-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.54 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
{
"name": "space",
"version": "1.0.0",
"description": "SPACE is an open-source project designed to provide a robust and scalable solution for pricing-driven self adaptation.",
"scripts": {
"dev": "concurrently \"pnpm run dev:server\" \"pnpm run dev:client\"",
"dev:setup": "concurrently \"cd api && pnpm run dev:setup\"",
"dev:setup:test": "cd api && pnpm run dev:setup:test && cd .. && cd frontend && pnpm run dev:setup:test",
"dev:server": "cd api && pnpm run dev",
"dev:client": "cd frontend && pnpm run dev",
"test:server": "cd api && pnpm run test",
"test": "pnpm run test:server",
"build": "pnpm run build:server && pnpm run build:client",
"build:server": "cd api && pnpm run build",
"build:client": "cd frontend && pnpm run build",
"install": "concurrently \"cd api && pnpm install\" \"cd frontend && pnpm install\"",
"prepare": "husky install"
},
"keywords": [
"api",
"open-source",
"space",
"nodejs",
"typescript",
"pricing",
"pricing-driven self-adaptation"
],
"author": "ISA Group <agarcia29@us.es>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Alex-GF/space.git"
},
"bugs": {
"url": "https://github.com/Alex-GF/space/issues"
},
"homepage": "https://github.com/Alex-GF/space#readme",
"engines": {
"node": ">=16.0.0"
},
"packageManager": "pnpm@10.9.0",
"devDependencies": {
"concurrently": "^9.1.2",
"husky": "^9.1.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}