-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.42 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.42 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
{
"name": "@openedx/frontend-app-instructor-dashboard",
"version": "0.0.0-dev",
"description": "The Open edX Instructor Dashboard",
"repository": {
"type": "git",
"url": "git+https://github.com/openedx/frontend-app-instructor-dashboard.git"
},
"exports": {
".": "./dist/index.js",
"./app.scss": "./dist/app.scss"
},
"files": [
"/dist"
],
"workspaces": [
"packages/*"
],
"browserslist": [
"extends @edx/browserslist-config"
],
"sideEffects": [
"*.css",
"*.scss"
],
"atlasTranslations": {
"path": "translations/frontend-app-instructor-dashboard/src/i18n/messages",
"dependencies": ["@openedx/frontend-base"]
},
"scripts": {
"build": "make build",
"build:packages": "make build-packages",
"clean": "make clean",
"clean:packages": "make clean-packages",
"dev": "PORT=2003 PUBLIC_PATH=/instructor-dashboard openedx dev",
"dev:site": "make dev-site",
"dev:packages": "make dev-packages",
"i18n_extract": "openedx formatjs extract",
"lint": "openedx lint .",
"lint:fix": "openedx lint --fix .",
"prepack": "npm run clean && npm run build",
"snapshot": "openedx test --updateSnapshot",
"test": "openedx test --coverage --passWithNoTests",
"translations:pull": "openedx translations:pull",
"watch:build": "nodemon --exec 'npm run build'"
},
"author": "Open edX",
"license": "AGPL-3.0",
"homepage": "https://github.com/openedx/frontend-app-instructor-dashboard#readme",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/openedx/frontend-app-instructor-dashboard/issues"
},
"dependencies": {
"@edx/brand": "npm:@openedx/brand-openedx@^1.2.3",
"@edx/openedx-atlas": "^0.7.0",
"lodash": "^4.17.23"
},
"devDependencies": {
"@edx/browserslist-config": "^1.5.0",
"@tanstack/react-query-devtools": "^5.90.2",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"jest": "^29",
"nodemon": "^3.1.14",
"tsc-alias": "^1.8.16",
"turbo": "^2.9.2"
},
"peerDependencies": {
"@openedx/frontend-base": "^1.0.0-alpha || 0.0.0-dev",
"@openedx/paragon": "^23",
"@tanstack/react-query": "^5",
"react": "^18",
"react-dom": "^18",
"react-router": "^6",
"react-router-dom": "^6"
}
}