forked from chairemobilite/evolution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 4.15 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
46
47
48
49
50
51
52
53
{
"private": true,
"name": "evolution",
"workspaces": [
"transition/packages/chaire-lib-common",
"transition/packages/chaire-lib-backend",
"transition/packages/chaire-lib-frontend",
"packages/evolution-common",
"packages/evolution-backend",
"packages/evolution-frontend",
"packages/evolution-legacy",
"packages/evolution-interviewer",
"packages/evolution-generator",
"example/demo_survey"
],
"scripts": {
"setup": "yarn workspace chaire-lib-backend run setup",
"setup-test": "PROJECT_CONFIG=${PWD}/transition/tests/config_test.js yarn workspace chaire-lib-backend run setup-test",
"migrate": "yarn workspace chaire-lib-backend run migrate && yarn workspace evolution-backend run migrate",
"migrate-test": "PROJECT_CONFIG=${PWD}/transition/tests/config_test.js yarn workspace chaire-lib-backend run migrate-test && PROJECT_CONFIG=${PWD}/transition/tests/config_test.js yarn workspace evolution-backend run migrate-test",
"clean": "yarn workspaces run clean",
"cleanModules": "yarn workspace evolution-common run cleanModules && yarn workspace evolution-backend run cleanModules && yarn workspace evolution-frontend run cleanModules && yarn workspace evolution-legacy run cleanModules && yarn workspace evolution-interviewer run cleanModules && yarn workspace demo_survey run cleanModules && rimraf node_modules",
"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 demo_survey run build:dev",
"build:prod": "yarn workspace demo_survey run build:prod",
"build:admin:dev": "yarn workspace demo_survey run build:admin:dev",
"build:admin:prod": "yarn workspace demo_survey run build:admin:prod",
"start": "yarn workspace demo_survey run start",
"start:admin": "yarn workspace demo_survey run start:admin",
"start:debug": "yarn workspace demo_survey run start:debug",
"start:tracing": "yarn workspace demo_survey run start:tracing",
"test": "yarn workspace evolution-common run test && yarn workspace evolution-backend run test && yarn workspace evolution-frontend run test && yarn workspace evolution-legacy run test && yarn workspace evolution-interviewer run test",
"test:unit": "yarn workspace evolution-common run test:unit && yarn workspace evolution-backend run test:unit && yarn workspace evolution-frontend run test:unit && yarn workspace evolution-legacy run test:unit && yarn workspace evolution-interviewer run test:unit",
"test:sequential": "yarn workspace evolution-common run test:sequential && yarn workspace evolution-backend run test:sequential && yarn workspace evolution-frontend run test:sequential && yarn workspace evolution-interviewer run test:sequential",
"test:generator": "python -m pytest -s -W ignore packages/evolution-generator/src/tests/",
"test:survey": "yarn workspace demo_survey run test:survey",
"test:ui:install-dependencies": "yarn workspace demo_survey run playwright install-deps && yarn workspace demo_survey run playwright install",
"lint": "yarn workspace evolution-common run lint && yarn workspace evolution-backend run lint && yarn workspace evolution-frontend run lint && yarn workspace evolution-interviewer run lint",
"format": "yarn workspace evolution-common run format && yarn workspace evolution-backend run format && yarn workspace evolution-frontend run format && yarn workspace evolution-generator run format && yarn workspace evolution-interviewer run format",
"list-tasks": "yarn workspace evolution-legacy run list-tasks",
"generate-migration": "knex migrate:make",
"reset-submodules": "rimraf transition/ && git submodule init && git submodule update",
"generateSurvey:example": "yarn worspace evolution-generator run generateSurvey --config_path src/examples/generatorExampleConfigs.yaml"
},
"dependencies": {},
"devDependencies": {
"depcheck": "^1.4.3",
"rimraf": "^3.0.2",
"wsrun": "^5.2.4"
}
}