forked from openedx/frontend-app-publisher
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.6 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
{
"name": "edx-frontend-app-publisher",
"version": "0.1.0",
"description": "Frontend for the Publisher Application",
"repository": "https://github.com/edx/frontend-app-publisher",
"browserslist": [
"last 2 versions",
"ie 11"
],
"scripts": {
"build": "fedx-scripts webpack",
"deploy:gh-pages": "npm run build && gh-pages -d dist",
"is-es5": "es-check es5 ./dist/*.js",
"lint": "fedx-scripts eslint --ext .jsx,.js .",
"lint-fix": "fedx-scripts eslint --ext .jsx,.js . --fix",
"prepush": "npm run lint; npm run stylelint",
"prepublishOnly": "npm run build",
"start": "fedx-scripts webpack-dev-server --progress",
"debug-test": "node --inspect-brk node_modules/.bin/jest --coverage --runInBand",
"test": "TZ=GMT fedx-scripts jest --coverage --runInBand",
"snapshot": "TZ=GMT fedx-scripts jest --updateSnapshot",
"stylelint": "stylelint '**/*.scss'"
},
"license": "AGPL-3.0",
"dependencies": {
"@edx/brand": "npm:@edx/[email protected]",
"@edx/frontend-component-footer-edx": "3.2.0",
"@edx/frontend-platform": "1.15.6",
"@edx/paragon": "19.14.0",
"@edx/tinymce-language-selector": "1.1.0",
"@fortawesome/free-solid-svg-icons": "6.1.1",
"@fortawesome/react-fontawesome": "0.1.18",
"@tinymce/tinymce-react": "3.8.4",
"classnames": "2.3.1",
"connected-react-router": "6.9.2",
"core-js": "3.21.1",
"fast-json-stable-stringify": "2.1.0",
"font-awesome": "4.7.0",
"history": "4.10.1",
"jsx-to-string": "1.4.0",
"moment": "2.29.1",
"moment-timezone": "0.5.34",
"postcss": "8.4.12",
"prop-types": "15.8.1",
"query-string": "7.1.1",
"react": "16.14.0",
"react-autosuggest": "10.1.0",
"react-beautiful-dnd": "13.1.0",
"react-dom": "16.14.0",
"react-helmet": "6.1.0",
"react-redux": "7.2.8",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"react-select": "3.2.0",
"react-tooltip": "4.2.21",
"redux": "4.1.2",
"redux-devtools-extension": "2.13.9",
"redux-form": "8.3.8",
"redux-logger": "3.0.6",
"redux-thunk": "2.4.1",
"regenerator-runtime": "0.13.9",
"tinymce": "5.10.3"
},
"devDependencies": {
"@edx/frontend-build": "9.1.4",
"@edx/stylelint-config-edx": "2.0.0",
"axios": "0.26.1",
"axios-mock-adapter": "1.20.0",
"codecov": "3.8.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.2",
"es-check": "6.2.1",
"gh-pages": "3.2.3",
"husky": "7.0.4",
"is-blob": "2.1.0",
"redux-mock-store": "1.5.4",
"stylelint-declaration-use-variable": "1.7.3"
}
}