-
Notifications
You must be signed in to change notification settings - Fork 163
/
package.json
138 lines (138 loc) · 5.82 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "studio",
"version": "0.0.1",
"private": true,
"description": "Frontend build tools and development utilities for Kolibri Studio",
"scripts": {
"lint:py": "flake8 --exit-zero",
"lint-frontend": "kolibri-tools lint --pattern 'contentcuration/contentcuration/frontend/**/*.{js,vue,scss,less,css}' --ignore '**/dist/**,**/node_modules/**,**/static/**'",
"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",
"makemessages": "kolibri-tools i18n-extract-messages --namespace contentcuration --searchPath contentcuration/contentcuration/frontend",
"combineprofiles": "node ./node_modules/kolibri-tools/lib/combineStringProfiles.js ./contentcuration/locale/en/LC_MESSAGES/profiles/",
"transfercontext": "kolibri-tools i18n-transfer-context --namespace studio --searchPath contentcuration/contentcuration/frontend; yarn lint-all:fix",
"build": "webpack --env prod --config webpack.config.js",
"postgres": "pg_ctl -D /usr/local/var/[email protected] start || true",
"redis": "redis-server /usr/local/etc/redis.conf || true",
"devsetup": "cd contentcuration && python manage.py setup --settings=contentcuration.dev_settings",
"services": "npm-run-all -c --parallel --silent celery minio redis postgres",
"test": "jest --config jest_config/jest.conf.js",
"build:dev": "webpack serve --env dev --config webpack.config.js --progress",
"build:dev:hot": "yarn run build:dev --hot --env hot",
"test-jest:dev": "yarn run test-jest --watch",
"test-jest": "yarn run test",
"test-jest:debug": "node --inspect node_modules/.bin/jest --runInBand --watch",
"minio": "MINIO_API_CORS_ALLOW_ORIGIN='http://localhost:8080,http://127.0.0.1:8080' MINIO_ACCESS_KEY=development MINIO_SECRET_KEY=development minio server ~/.minio_data/ || true",
"runserver": "cd contentcuration && python manage.py runserver --settings=contentcuration.dev_settings 0.0.0.0:8080",
"runserver:debug-panel": "cd contentcuration && python manage.py runserver --settings=contentcuration.debug_panel_settings 0.0.0.0:8080",
"runserver:prod-profiling": "cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.profile_settings gunicorn -b 0.0.0.0:8080 --workers=3 --threads=2 contentcuration.wsgi",
"devserver": "npm-run-all --parallel build:dev runserver",
"devserver:hot": "npm-run-all --parallel build:dev:hot runserver",
"devserver-hot": "yarn run devserver:hot",
"devshell": "cd contentcuration && python manage.py shell --settings=contentcuration.dev_settings",
"celery": "(cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.dev_settings celery -A contentcuration worker --without-mingle --without-gossip -c 1 -l info) || true",
"storybook": "start-storybook",
"storybook:debug": "start-storybook --debug-webpack",
"storybook:build": "build-storybook",
"update-languages": "kolibri-tools i18n-code-gen --output-dir contentcuration/contentcuration/frontend/shared/i18n/ --lang-info contentcuration/contentcuration/language_info.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learningequality/studio.git"
},
"keywords": [
"education",
"content",
"learning",
"edtech"
],
"author": "Learning Equality",
"license": "MIT",
"bugs": {
"url": "https://github.com/learningequality/studio/issues"
},
"homepage": "https://github.com/learningequality/studio#readme",
"dependencies": {
"@sentry/vue": "^7.112.2",
"@toast-ui/editor": "^2.3.1",
"@vue/composition-api": "^1.7.2",
"ajv": "^8.12.0",
"axios": "^1.7.7",
"broadcast-channel": "^5.1.0",
"codemirror": "5.58.2",
"core-js": "^3.37.0",
"dexie": "^3.2.6",
"dexie-observable": "3.0.0-beta.11",
"epubjs": "^0.3.89",
"file-saver": "^2.0.2",
"html2canvas": "^1.0.0-rc.5",
"i18n-iso-countries": "^7.11.3",
"intl": "1.2.5",
"jquery": "^2.2.4",
"jspdf": "https://github.com/parallax/jsPDF.git#b7a1d8239c596292ce86dafa77f05987bcfa2e6e",
"jszip": "^3.10.1",
"kolibri-constants": "^0.2.0",
"kolibri-design-system": "^4.5.1",
"lodash": "^4.17.21",
"material-icons": "0.3.1",
"mutex-js": "^1.1.5",
"node-vibrant": "^3.1.6",
"papaparse": "^5.4.1",
"pdfjs-dist": "^2.16.105",
"qs": "^6.11.2",
"regenerator-runtime": "^0.13.5",
"showdown": "^2.1.0",
"spark-md5": "^3.0.0",
"store2": "^2.14.3",
"string-strip-html": "8.3.0",
"uuid": "^9.0.1",
"vue": "^2.6.12",
"vue-croppa": "^1.3.8",
"vue-custom-element": "https://github.com/learningequality/vue-custom-element.git#master",
"vue-intl": "^3.0.0",
"vue-router": "3.6.5",
"vuetify": "^1.5.24",
"vuex": "^3.0.1",
"workbox-precaching": "^7.1.0",
"workbox-window": "^7.0.0"
},
"devDependencies": {
"@vue/test-utils": "1.0.0-beta.29",
"aphrodite": "https://github.com/learningequality/aphrodite.git",
"autoprefixer": "^10.4.19",
"babel-jest": "^26.0.1",
"circular-dependency-plugin": "^5.2.0",
"eslint-import-resolver-webpack": "0.13.8",
"fake-indexeddb": "^4.0.0",
"file-loader": "^6.2.0",
"flush-promises": "^1.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-each": "^29.7.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-serializer-vue": "^3.1.0",
"kolibri-tools": "0.16.0-dev.3",
"less": "^3.0.1",
"less-loader": "^11.1.3",
"npm-run-all": "^4.1.3",
"stylus": "^0.63.0",
"stylus-loader": "^7.1.3",
"web-streams-polyfill": "^4.0.0",
"workbox-webpack-plugin": "^7.0.0"
},
"false": {},
"peerDependencies": {},
"engines": {
"node": "16.x",
"npm": ">= 8"
},
"browserslist": [
"> 1%",
"Firefox ESR"
],
"volta": {
"node": "16.20.2",
"yarn": "1.22.22"
}
}