-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 1.51 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
{
"name": "kolibri-instant-schools",
"version": "0.0.1",
"description": "Custom plugin for Vodafone.",
"scripts": {
"build": "kolibri-tools build prod --plugins kolibri_instant_schools_plugin",
"stats": "kolibri-tools build stats --plugins kolibri_instant_schools_plugin",
"django-devserver": "DJANGO_SETTINGS_MODULE=kolibri_instant_schools_plugin.dev_settings kolibri start --foreground --debug --port=8000",
"watch": "kolibri-tools build dev --plugins kolibri_instant_schools_plugin --port 4000",
"watch-hot": "kolibri-tools build dev --plugins kolibri_instant_schools_plugin --port 4000 --hot",
"devserver": "npm-run-all --parallel django-devserver watch",
"devserver-hot": "npm-run-all --parallel django-devserver watch-hot",
"clean": "kolibri-tools build clean --file ./build_plugins.txt",
"lint": "kolibri-tools lint",
"lint-all": "kolibri-tools lint --pattern 'kolibri_instant_schools_plugin/assets/**/*.{js,vue,scss,less,css}' --ignore '**/normalize.min.css'",
"lint-all:fix": "yarn run lint-all -w",
"lint:fix": "yarn run lint -w",
"test": "yarn run test-jest --watch",
"test-jest": "kolibri-tools test --config ./jest.conf.js"
},
"devDependencies": {
"kolibri-tools": "^0.17.0-dev.4",
"yarn-run-all": "^3.1.1"
},
"engines": {
"node": "18.x",
"npm": ">= 3"
},
"browserslist": [
"extends browserslist-config-kolibri"
],
"dependencies": {
"kolibri-design-system": "4.6",
"lockr": "0.8.5",
"vuex-router-sync": "^5.0.0"
}
}