-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.59 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.59 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
{
"name": "@openedx/frontend-build",
"version": "1.0.0-semantically-released",
"description": "Build tools, setup and config for frontend apps",
"publishConfig": {
"access": "public"
},
"main": "index.js",
"bin": {
"fedx-scripts": "./bin/fedx-scripts.js"
},
"scripts": {
"lint": "npm run lint:root && npm run lint:example",
"lint:root": "eslint . --no-eslintrc -c .eslintrc.js",
"lint:example": "cd example && npm run lint",
"test": "bash ./smoke-test.sh"
},
"files": [
"/bin",
"/config",
"/lib",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openedx/frontend-build.git"
},
"keywords": [],
"author": "Open edX Community",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/openedx/frontend-build/issues"
},
"homepage": "https://github.com/openedx/frontend-build#readme",
"dependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.26.3",
"@edx/eslint-config": "^4.3.0",
"@edx/new-relic-source-map-webpack-plugin": "^2.1.0",
"@edx/typescript-config": "^1.1.0",
"@formatjs/cli": "^6.0.3",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@svgr/webpack": "^8.1.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "^10.4.27",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"babel-plugin-formatjs": "^10.4.0",
"babel-plugin-transform-imports": "^2.0.0",
"babel-polyfill": "^6.26.0",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^5.2.7",
"cssnano": "^6.0.3",
"dotenv": "^8.6.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^4.2.1",
"eslint-plugin-formatjs": "^4.12.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"identity-obj-proxy": "^3.0.0",
"image-minimizer-webpack-plugin": "^4.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^1.6.2",
"parse5": "^7.1.2",
"postcss": "^8.4.49",
"postcss-custom-media": "^10.0.8",
"postcss-loader": "^7.3.4",
"postcss-rtlcss": "^5.7.1",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.16.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.85.1",
"sass-loader": "^13.3.3",
"sharp": "^0.34.3",
"source-map-loader": "^4.0.2",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.4",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0",
"webpack-remove-empty-scripts": "^1.0.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
}
}