forked from chairemobilite/transition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (41 loc) · 2.09 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
{
"private": true,
"name": "transition",
"workspaces": [
"packages/chaire-lib-common",
"packages/chaire-lib-backend",
"packages/chaire-lib-frontend",
"packages/transition-common",
"packages/transition-backend",
"packages/transition-frontend"
],
"scripts": {
"setup": "yarn workspace chaire-lib-backend run setup",
"setup-test": "PROJECT_CONFIG=${PWD}/tests/config_test.js yarn workspace chaire-lib-backend run setup-test",
"migrate": "yarn workspace chaire-lib-backend run migrate && yarn workspace transition-backend run migrate",
"migrate-test": "PROJECT_CONFIG=${PWD}/tests/config_test.js yarn workspace chaire-lib-backend run migrate-test && PROJECT_CONFIG=${PWD}/tests/config_test.js yarn workspace transition-backend run migrate-test",
"clean": "yarn workspaces run clean",
"compile": "yarn workspaces run compile",
"compile:dev": "yarn wsrun compile:dev",
"create-user": "yarn workspace chaire-lib-backend run create-user",
"build:dev": "yarn workspace transition-frontend run build:dev",
"build:prod": "yarn workspace transition-frontend run build:prod",
"start": "yarn workspace transition-backend run start",
"start:demo": "PROJECT_CONFIG=${PWD}/examples/config.js yarn workspace transition-backend run start",
"start:debug": "yarn workspace transition-backend run start:debug",
"start:tracing": "yarn workspace transition-backend run start:tracing",
"start:json2capnp": "cd services/json2capnp && cargo run --release",
"test": "yarn workspaces run test",
"test:unit": "yarn workspaces run test:unit",
"test:sequential": "yarn workspaces run test:sequential",
"test:ui": "yarn workspaces run test:ui",
"lint": "yarn workspaces run lint",
"format": "yarn workspaces run format",
"list-tasks": "yarn workspace transition-backend run list-tasks",
"generate-migration": "knex migrate:make"
},
"dependencies": {},
"devDependencies": {
"wsrun": "^5.2.4"
}
}