forked from openedx/frontend-platform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.25 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
{
"name": "@edx/frontend-platform",
"version": "1.0.0-semantically-released",
"description": "Foundational application framework for Open edX micro-frontend applications.",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "make build",
"docs": "jsdoc -c jsdoc.json",
"docs-watch": "nodemon -w src -w docs/template -w README.md -e js,jsx --exec npm run docs",
"lint": "fedx-scripts eslint --ext .js --ext .jsx .",
"snapshot": "fedx-scripts jest --updateSnapshot",
"start": "fedx-scripts webpack-dev-server --progress",
"test": "fedx-scripts jest --coverage"
},
"bin": {
"transifex-utils.js": "i18n/scripts/transifex-utils.js",
"transifex-Makefile": "i18n/scripts/Makefile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edx/frontend-platform.git"
},
"author": "edX",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/edx/frontend-platform/issues"
},
"homepage": "https://github.com/edx/frontend-platform#readme",
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@commitlint/config-angular": "8.2.0",
"@edx/frontend-build": "2.0.6",
"@edx/paragon": "7.1.5",
"axios-mock-adapter": "1.17.0",
"babel-polyfill": "6.26.0",
"codecov": "3.7.2",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.5",
"husky": "3.0.9",
"jsdoc": "3.6.6",
"nodemon": "2.0.4",
"prop-types": "15.7.2",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-redux": "7.1.3",
"react-router-dom": "5.1.2",
"redux": "4.0.5"
},
"dependencies": {
"@cospired/i18n-iso-languages": "2.1.2",
"axios": "0.18.1",
"form-urlencoded": "4.1.4",
"glob": "7.1.6",
"history": "4.10.1",
"i18n-iso-countries": "4.3.1",
"jwt-decode": "2.2.0",
"lodash.camelcase": "4.3.0",
"lodash.memoize": "4.1.2",
"lodash.merge": "4.6.2",
"lodash.snakecase": "4.1.1",
"pubsub-js": "1.7.0",
"react-intl": "2.9.0",
"universal-cookie": "4.0.4"
},
"peerDependencies": {
"@edx/paragon": "^7.1.3",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4"
}
}