This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
101 lines (101 loc) · 3.35 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
{
"name": "edx-analytics-dashboard",
"repository": {
"type": "git",
"url": "git://github.com/openedx/edx-analytics-dashboard"
},
"dependencies": {
"@babel/core": "7.17.8",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "8.2.4",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-runtime": "6.26.0",
"backbone": "1.3.3",
"backbone.marionette": "2.4.7",
"backgrid": "0.3.8",
"backgrid-filter": "0.3.7",
"backgrid-moment-cell": "0.3.8",
"backgrid-paginator": "0.3.9",
"bootstrap-accessibility-plugin": "1.0.5",
"bootstrap-sass": "3.3.7",
"cldr-data": "31.0.2",
"cldrjs": "0.5.5",
"css-loader": "0.28.11",
"d3": "3.5.17",
"datamaps": "0.5.9",
"datatables": "1.10.13",
"datatables-bootstrap3-plugin": "0.6.0",
"edx-pattern-library": "0.16.6",
"edx-ui-toolkit": "git+https://github.com/openedx/edx-ui-toolkit.git#29759050aff2f4f3cb6921432855ad057bd69bb1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "0.11.2",
"font-awesome": "4.6.3",
"globalize": "1.1.1",
"install": "0.8.9",
"jquery": "1.11.3",
"js-natural-sort": "0.8.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"moment": "2.24.0",
"node-bourbon": "4.2.8",
"nprogress": "0.2.0",
"nvd3": "1.8.6",
"raw-loader": "0.5.1",
"resolve-url-loader": "2.3.0",
"sass": "1.49.0",
"sass-loader": "7.3.1",
"style-loader": "0.18.2",
"topojson": "1.4.9",
"underscore": "1.8.3",
"urijs": "1.17.1",
"url-loader": "0.5.9",
"webpack": "3.12.0",
"webpack-bundle-analyzer": "2.13.1",
"webpack-bundle-tracker": "0.4.3",
"webpack-merge": "4.1.2"
},
"devDependencies": {
"@edx/eslint-config": "^3.1.0",
"axe-core": "2.6.1",
"babel-eslint": "7.2.3",
"babel-plugin-istanbul": "6.1.1",
"edx-custom-a11y-rules": "2.0.1",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "0.8.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"fast-sass-loader": "2.0.1",
"gulp": "4.0.2",
"jasmine": "2.1.1",
"jasmine-core": "2.99.1",
"jscs": "1.13.1",
"karma": "4.4.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "0.2.2",
"karma-jasmine-jquery-2": "0.1.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.13",
"phantomjs-prebuilt": "2.1.16",
"prettier": "1.12.1",
"prettier-eslint": "6.4.3",
"prettier-eslint-cli": "4.7.1",
"sinon": "1.17.7",
"webpack-dev-server": "2.11.5"
},
"scripts": {
"postinstall": "./npm-post-install.sh",
"test": "gulp test",
"start": "node_modules/.bin/webpack-dev-server --hot --inline --progress --colors --port=${WEBPACK_PORT:-8080}",
"build": "node_modules/.bin/webpack --config webpack.prod.config.js",
"lint": "node_modules/.bin/eslint analytics_dashboard/static/",
"format": "node_modules/.bin/prettier-eslint --write analytics_dashboard/static/apps/course-list/app/*.js analytics_dashboard/static/apps/course-list/app/**/*.js"
}
}