-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.66 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
{
"name": "visualising-optimisation-data",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"description": "This is the COMP3000 Computing Project on the topic of creating \"A Web Platform for Visualising Optimisation Data\".",
"scripts": {
"prepare": "lerna run prepare",
"tsc": "lerna run tsc",
"backend": "yarn --cwd backend dev",
"frontend": "yarn workspace frontend start",
"pareto": "yarn workspace pareto-front serve:build",
"line": "yarn workspace line serve:build",
"stack": "concurrently -n backend,pareto-plugin,frontend \"yarn --cwd backend start\" \"yarn pareto\" \"yarn workspace frontend serve:build\"",
"test:backend": "yarn --cwd backend test",
"test:frontend": "yarn workspace frontend test",
"e2e": "cross-env E2E_TESTING=true start-server-and-test stack 3000 cy:run",
"e2e:interactive": "cross-env E2E_TESTING=true start-server-and-test stack 3000 cy:open",
"wait-stack": "wait-on http-get://localhost:9000 http-get://localhost:5000",
"cy:run": "yarn wait-stack && cypress run",
"cy:open": "yarn wait-stack && cypress open",
"heroku-postbuild": "yarn workspaces run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoelBiju/Visualising-Optimisation-Data.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GoelBiju/Visualising-Optimisation-Data/issues"
},
"homepage": "https://github.com/GoelBiju/Visualising-Optimisation-Data#readme",
"devDependencies": {
"concurrently": "^6.0.2",
"cross-env": "^7.0.3",
"lerna": "^3.22.1",
"start-server-and-test": "^1.12.1",
"wait-on": "^5.3.0"
}
}