-
Notifications
You must be signed in to change notification settings - Fork 733
/
Copy pathpackage.json
70 lines (70 loc) · 3.3 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
66
67
68
69
70
{
"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": "yarn run hashi-build && kolibri-tools build prod --file ./build_tools/build_plugins.txt",
"makemessages": "kolibri-tools i18n-extract-messages --pluginFile ./build_tools/build_plugins.txt",
"createprofiles": "kolibri-tools i18n-profile --pluginFile ./build_tools/build_plugins.txt --output-file ./kolibri/locale/en/LC_MESSAGES/profiles/strings.csv",
"transfercontext": "kolibri-tools i18n-transfer-context --pluginFile ./build_tools/build_plugins.txt",
"watch": "kolibri-tools build dev --file ./build_tools/build_plugins.txt",
"watch-hot": "yarn run watch --hot",
"python-devserver": "kolibri start --debug --foreground --port=8000 --settings=kolibri.deployment.default.settings.dev",
"python-devserver-no-update": "kolibri start --debug --skip-update --foreground --port=8000 --settings=kolibri.deployment.default.settings.dev",
"frontend-devserver": "run-p lint-frontend:watch:format hashi-dev watch",
"devserver": "run-p python-devserver lint-frontend:watch:format hashi-dev watch ",
"devserver-warn": "run-p python-devserver lint-frontend:watch hashi-dev watch",
"devserver-hot": "run-p python-devserver lint-frontend:watch:format hashi-dev watch-hot",
"devserver-hot-warn": "run-p python-devserver lint-frontend:watch hashi-dev watch-hot",
"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 --pattern '{kolibri*/**/assets,packages,build_tools}/**/*.{js,vue,scss,less,css}' --ignore '**/dist/**,**/node_modules/**,**/static/**,**/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",
"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",
"compress": "kolibri-tools compress 'kolibri/*/**/static/**/*.{js,css,ico,svg,map,eot,woff,ttf,woff2}'"
},
"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,
"devDependencies": {
"@types/jest": "^24.0.12",
"xhr-mock": "^2.5.1",
"yarn-run-all": "^3.1.1"
},
"optionalDependencies": {
"fsevents": "*"
},
"engineStrict": true,
"engines": {
"node": "10.x",
"yarn": ">= 1.12.3"
},
"browserslist": [
"extends browserslist-config-kolibri"
],
"dependencies": {
"kolibri-constants": "0.1.32"
}
}