forked from curiouslearning/FeedTheMonsterJS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.62 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
{
"name": "feedthemonsterjs",
"version": "1.0.40",
"description": "education app",
"main": "feedTheMonster.js",
"scripts": {
"release": "release-it",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js --mode=production && npm run wb:inject",
"dev": "webpack serve -c webpack.config.js && npm run wb:inject",
"wb:inject": "workbox injectManifest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curiouslearning/FeedTheMonsterJS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/curiouslearning/FeedTheMonsterJS/issues"
},
"homepage": "https://github.com/curiouslearning/FeedTheMonsterJS#readme",
"dependencies": {
"@capacitor/android": "^4.4.0",
"@capacitor/core": "^4.4.0",
"@octokit/rest": "^20.0.1",
"@release-it/conventional-changelog": "^8.0.1",
"@sentry/browser": "^7.47.0",
"@types/firebase": "^3.2.1",
"@types/workbox-window": "^4.3.4",
"axios": "^1.4.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv": "^16.3.1",
"firebase": "^10.1.0",
"fluent-ffmpeg": "^2.1.2",
"fs": "^0.0.1-security",
"googleapis": "^118.0.0",
"howler": "^2.2.3",
"node-fetch": "^3.3.1",
"path": "^0.12.7",
"release-it": "^17.4.0",
"simple-git": "^3.19.1",
"ts-loader": "^9.4.1",
"workbox": "^0.0.0",
"workbox-window": "^4.3.1"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "cont",
"section": "Content Changes"
},
{
"type": "other",
"section": "Other Minor Changes"
},
{}
]
}
}
}
},
"devDependencies": {
"@capacitor/cli": "^4.4.0",
"@types/howler": "^2.2.7",
"compression-webpack-plugin": "^11.1.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^4.9.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"workbox-cli": "^7.3.0"
}
}