forked from learningequality/kolibri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 5.14 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
139
140
141
142
143
144
145
146
{
"name": "kolibri",
"version": "0.0.1",
"description": "Development utilities for Kolibri",
"scripts": {
"test": "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",
"coverage": "yarn run test-jest-cov",
"build": "webpack --config ./frontend_build/src/webpack.config.prod.js",
"test-build": "yarn run lint-js && webpack --config ./frontend_build/src/webpack.config.prod.js --bail",
"makemessages": "webpack --config ./frontend_build/src/webpack.config.trs.js",
"watch": "node ./frontend_build/src/webpackdevserver.js",
"django-devserver": "kolibri --debug manage runserver --settings=kolibri.deployment.default.settings.dev \"0.0.0.0:8000\" ",
"devserver": "npm-run-all --parallel django-devserver watch",
"bundle-stats": "webpack --config ./frontend_build/src/webpack.config.prod.js --json | node ./node_modules/webpack-bundle-size-analyzer/webpack-bundle-size-analyzer",
"install": "node ./frontend_build/src/install_dependencies.js",
"clean": "node ./frontend_build/src/clean.js",
"preinstall": "node ./frontend_build/src/npm_deprecation_warning.js",
"lint-js": "node ./frontend_build/src/prettier-frontend.js --prettierPath ./.prettier.js",
"lint-js:fix": "yarn run lint-js -w",
"generate-locale-data": "node ./frontend_build/src/intl_code_gen.js"
},
"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": {
"array-includes": "^3.0.3",
"clipboard": "^2.0.1",
"core-js": "^2.4.1",
"css-element-queries": "1.0.1",
"date-fns": "^1.28.2",
"engine-strict": "^1.0.0",
"filesize": "^3.3.0 ",
"frame-throttle": "^2.0.1",
"intl": "^1.2.4",
"js-cookie": "^2.1.2",
"keen-ui": "https://github.com/learningequality/Keen-UI/",
"lockr": "0.8.4",
"lodash": "^4.17.4",
"loglevel": "^1.4.1",
"markdown-it": "^8.3.1",
"material-design-icons": "^3.0.1",
"purecss": "^0.6.2",
"rest": "^1.3.2",
"screenfull": "^3.3.2",
"seededshuffle": "^0.1.1",
"shave": "^2.1.3",
"typeface-noto-sans": "^0.0.54",
"vue": "^2.5.17",
"vue-intl": "2.1.1",
"vue-markdown": "^2.1.3",
"vue-meta": "^1.5.0",
"vue-router": "^2.1.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.13",
"autoprefixer": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"buble": "0.19.3",
"buble-loader": "0.5.0",
"chai": "^4.1.2",
"colors": "^1.1.2",
"commander": "^2.9.0",
"css-loader": "^0.28.7",
"eslint": "^4.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "https://github.com/learningequality/eslint-loader/",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-kolibri": "file:./eslint-plugin-kolibri",
"eslint-plugin-vue": "4.2.0",
"esprima": "^4.0.0",
"exports-loader": "^0.6.3",
"fg-loadcss": "^1.2.0",
"file-loader": "^1.1.5",
"glob": "^7.1.2",
"htmlhint": "^0.9.13",
"htmlhint-loader": "^1.3.0",
"imports-loader": "^0.7.1",
"intl-messageformat-parser": "^1.3.0",
"jest": "^23.1.0",
"jest-serializer-vue": "^2.0.2",
"json-loader": "^0.5.4",
"launch-editor-middleware": "^2.2.1",
"mini-css-extract-plugin": "^0.4.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.9.1",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"postcss-loader": "^2.0.6",
"prettier": "^1.13.7",
"responselike": "^1.0.2",
"rewire": "^2.5.2",
"sass-loader": "^7.0.3",
"shelljs": "^0.7.4",
"simulant": "^0.2.2",
"sinon": "^4.0.1",
"strip-json-comments": "^2.0.1",
"style-loader": "^0.19.0",
"stylelint": "^9.3.0",
"stylelint-config-prettier": "^3.3.0",
"stylelint-config-recess-order": "^2.0.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-sass-guidelines": "^5.0.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-csstree-validator": "^1.3.0",
"stylelint-webpack-plugin": "^0.10.5",
"svg-icon-inline-loader": "^3.0.0",
"temp": "^0.8.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue-hot-reload-api": "^2.0.6",
"vue-html-loader": "^1.2.3",
"vue-jest": "^2.6.0",
"vue-loader": "15.4.2",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.6.0",
"webpack-bundle-size-analyzer": "^2.0.2",
"webpack-bundle-tracker": "https://github.com/learningequality/webpack-bundle-tracker",
"webpack-cli": "^2.0.15",
"webpack-dev-middleware": "^3.1.2",
"webpack-dev-server": "3.1.3",
"webpack-hot-middleware": "2.12.1",
"webpack-merge": "^4.1.0",
"webpack-rtl-plugin": "^1.6.0",
"yarn-run-all": "^3.1.1"
},
"optionalDependencies": {
"fsevents": "*"
},
"engines": {
"node": "6.x",
"npm": ">= 3"
}
}