forked from learningequality/kolibri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.96 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "kolibri-root",
"version": "0.12.0-dev.1",
"description": "Development utilities for Kolibri",
"workspaces": [
"packages/*",
"kolibri/core",
"kolibri/plugins/*"
],
"scripts": {
"test": "yarn run test-jest --watch",
"test-jest": "kolibri-tools test --config ./jest.conf.js",
"test-jest-cov": "yarn run test-jest --coverage",
"coverage": "yarn run test-jest-cov",
"build": "kolibri-tools build prod --file ./build_tools/build_plugins.txt && yarn run hashi-build",
"makemessages": "kolibri-tools build i18n --file ./build_tools/build_plugins.txt",
"watch": "kolibri-tools build dev --file ./build_tools/build_plugins.txt",
"watch-hot": "yarn run watch --hot",
"django-devserver": "kolibri --debug manage runserver --settings=kolibri.deployment.default.settings.dev \"0.0.0.0:8000\" ",
"services": "kolibri services --foreground --skipupdate",
"devserver": "npm-run-all --parallel django-devserver lint-frontend:watch:format hashi-dev watch services",
"devserver-warn": "npm-run-all --parallel django-devserver lint-frontend:watch hashi-dev watch services",
"devserver-hot": "npm-run-all --parallel django-devserver lint-frontend:watch:format hashi-dev watch-hot services",
"devserver-hot-warn": "npm-run-all --parallel django-devserver lint-frontend:watch hashi-dev watch-hot services",
"bundle-stats": "kolibri-tools build stats --file ./build_tools/build_plugins.txt",
"clean": "kolibri-tools build clean --file ./build_tools/build_plugins.txt",
"preinstall": "node ./packages/kolibri-tools/lib/npm_deprecation_warning.js",
"lint-frontend": "kolibri-tools lint '{kolibri*/**/assets,packages}/**/*.{js,vue,scss,less,css}' --ignore '**/node_modules/**','**/static/**','**/packages/kolibri-core-for-export/**'",
"lint-frontend:format": "yarn run lint-frontend --write",
"lint-frontend:watch": "yarn run lint-frontend --monitor",
"lint-frontend:watch:format": "yarn run lint-frontend --monitor --write",
"fmt-backend": "yarn run black-fmt",
"fmt-backend:check": "yarn run black-fmt --check",
"fmt-backend:watch": "yarn run black-fmt --watch",
"build-kolibri-tools": "yarn workspace kolibri-tools run build-kolibri-tools",
"publish-packages": "node ./packages/publish.js",
"hashi-dev": "yarn workspace hashi run dev",
"hashi-build": "yarn workspace hashi run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learningequality/kolibri.git"
},
"author": "Learning Equality",
"license": "MIT",
"bugs": {
"url": "https://github.com/learningequality/kolibri/issues"
},
"private": true,
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.12",
"black-fmt": "https://github.com/learningequality/black-fmt#v0.1.3",
"kolibri-tools": "0.12.0-beta.3.2",
"yarn-run-all": "^3.1.1"
},
"optionalDependencies": {
"fsevents": "*"
},
"engineStrict": true,
"engines": {
"node": "10.x",
"yarn": ">= 1.12.3"
}
}