-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.19 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": "learningcircles",
"version": "1.0.0",
"description": "Learning circles are study groups that meet weekly to work through an online course.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"build:profile": "webpack --mode production --config webpack.config.profile.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p2pu/learning-circles.git"
},
"author": "Dirk Uys",
"license": "MIT",
"bugs": {
"url": "https://github.com/p2pu/learning-circles/issues"
},
"homepage": "https://github.com/p2pu/learning-circles#readme",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@popperjs/core": "^2.11.6",
"@typeform/embed": "^0.5.12",
"aos": "^3.0.0-beta.6",
"axios": "^0.19.1",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"bootstrap": "^5.2.3",
"bootstrap-icons": "^1.5.0",
"css-loader": "^6.7.3",
"custom-event-polyfill": "^1.0.7",
"date-fns": "^3.6.0",
"jquery": "^3.6.0",
"jsonp": "^0.2.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.2",
"moment": "^2.18.1",
"p2pu-components": "file:p2pu-components",
"p2pu-theme": "file:p2pu-theme",
"promise-polyfill": "^6.0.2",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-responsive-modal": "^6.4.2",
"react-select": "^5.8.0",
"react-tabs": "^4.3.0",
"resolve-url-loader": "^5.0.0",
"rrule": "^2.8.1",
"sass": "^1.43.4",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ttag": "^1.7.24",
"webpack": "^5.75.0",
"webpack-bundle-tracker": "^1.8.1",
"webpack-cli": "^5.0.1",
"whatwg-fetch": "^2.0.3",
"whatwg-url": "^6.4.0"
},
"devDependencies": {
"webpack-bundle-analyzer": "^3.3.2"
},
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}