forked from learningequality/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 6.27 KB
/
package.json
File metadata and controls
153 lines (153 loc) · 6.27 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"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": "kolibri-tools lint",
"lint-all": "yarn run lint 'contentcuration/contentcuration/static/**/*.{js,vue,scss,less,css}' -i '**/node_modules/**','**/bundles/**','**/static/js/utils/**','**/static/css/**','contentcuration/static/**'",
"lint-all:fix": "yarn run lint-all -w",
"lint:fix": "yarn run lint -w",
"lint:watch": "yarn lint-all -w -m",
"makemessages": "find ./contentcuration/contentcuration/static/js/edit_channel -name '*.js' -or -name '*.vue' | xargs node ./extract_frontend_messages.js",
"build": "webpack --env.prod --config webpack.config.js",
"cypress:run": "wait-on -t 20000 tcp:8081 && cypress run --spec cypress/integration/login.js",
"cypress:test": "yarn run build && npm-run-all --parallel --race testserver cypress:run",
"pytest": "cd contentcuration; pytest --cov-report=xml --cov=./",
"pytest:reusedb": "cd contentcuration; pytest --reuse-db",
"postgres": "pg_ctl -D /usr/local/var/postgresql@9.6 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 celery:dashboard minio redis postgres",
"unittests": "yarn run build && yarn run pytest && yarn run test-jest",
"unittests:reusedb": "npm-run-all --parallel --race services pytest:reusedb",
"apptests": "npm-run-all --parallel --race services cypress:test",
"test": "npm-run-all unittests apptests",
"build:dev": "webpack-dev-server --env.dev --config webpack.config.js --watch --progress",
"build:dev:hot": "yarn run build:dev --hot --env.hot",
"test-jest:dev": "yarn run test-jest --watch",
"test-jest": "jest --config jest_config/jest.conf.js",
"test-jest-cov": "jest --config jest_config/jest.conf.js --coverage",
"minio:test": "rm -rf ~/.minio_test && minio server ~/.minio_test/ || true",
"minio": "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",
"gunicornserver": "cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.profile_settings gunicorn -b 0.0.0.0:8080 --workers=3 --threads=2 contentcuration.wsgi",
"testserver": "cd contentcuration && python manage.py runserver --settings=contentcuration.test_settings 0.0.0.0:8081",
"devserver": "npm-run-all --parallel build:dev runserver",
"localprodserver": "npm-run-all build gunicornserver",
"devserver:hot": "npm-run-all --parallel build:dev:hot runserver",
"devshell": "cd contentcuration && python manage.py shell --settings=contentcuration.dev_settings",
"celery:dashboard": "cd contentcuration && celery -A contentcuration flower",
"celery": "(cd contentcuration && DJANGO_SETTINGS_MODULE=contentcuration.dev_settings celery -A contentcuration worker --without-mingle --without-gossip -l info) || true"
},
"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/browser": "^5.9.1",
"@vue/test-utils": "^1.0.0-beta.29",
"backbone": "^1.2.1",
"backbone-undo": "^0.2.5",
"backbone.paginator": "^2.0.8",
"bootstrap": "^3.3.5",
"browser-filesaver": "^1.1.0",
"croppie": "^2.4.1",
"d3": "^5.4.0",
"d3-cloud": "^1.2.5",
"dropzone": "^4.0.1",
"espree": "^5.0.0",
"factor-bundle": "^2.4.1",
"fastclick": "^1.0.6",
"get-installed-path": "^2.0.3",
"handlebars": "^4.0.11",
"handlebars-intl": "^1.1.2",
"jqcloud2": "^2.0.3",
"jquery": "^2.2.4",
"jquery-file-download": "^1.4.6",
"jquery-ui": "^1.12.0",
"jszip": "^2.5.0",
"jszip-utils": "0.0.2",
"katex": "^0.7.0",
"marked": "^0.3.5",
"material-design-icons": "^3.0.1",
"mathjax": "^2.7.0",
"mathquill": "^0.10.1-a",
"node-vibrant": "^3.0.0",
"offline-js": "^0.7.19",
"promise-polyfill": "^6.0.2",
"summernote": "0.8.10",
"to-markdown": "^3.0.3",
"underscore": "^1.9.0",
"vue": "^2.5.17",
"vue-intl": "^2.0.0",
"vuetify": "^1.5.8",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/polyfill": "^7.4.4",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.6.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"commander": "^2.11.0",
"css-loader": "^0.28.11",
"cypress": "^3.0.1",
"eslint": "^4.1.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-require-path-exists": "^1.1.7",
"eslint-plugin-vue": "^3.5.0",
"glob": "^7.1.2",
"handlebars-jest": "^0.3.0",
"handlebars-template-loader": "^1.0.0",
"imports-loader": "^0.8.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"kolibri-tools": "=0.12.2-dev.1",
"less": "^3.0.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.4.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"postcss-loader": "^3.0.0",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^2.0.0",
"vue-jest": "^2.6.0",
"vue-loader": "^15.0.9",
"vue-template-compiler": "^2.5.17",
"wait-on": "^2.1.0",
"webpack": "^4.5.0",
"webpack-bundle-tracker": "^0.3.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1",
"webpack-rtl-plugin": "^1.6.0"
},
"false": {},
"peerDependencies": {},
"engines": {
"node": "10.x",
"npm": ">= 3"
}
}