-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.26 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.26 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
116
117
118
119
{
"name": "feedthemonsterjs",
"version": "1.5.0",
"description": "education app",
"main": "feedTheMonster.js",
"scripts": {
"release": "release-it",
"wb:inject": "workbox injectManifest",
"dev": "webpack serve -c webpack.config.js",
"build": "cross-env NODE_ENV=production webpack -c webpack.config.js --mode=production && npm run wb:inject",
"lint": "eslint -c ./.eslintrc.json src",
"clean": "eslint clean",
"fix": "eslint fix",
"test": "jest",
"test:local": "jest --collectCoverage=false"
},
"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",
"@curiouslearning/analytics": "^1.3.1",
"@curiouslearning/assessment-survey": "^1.0.0",
"@curiouslearning/features": "^1.3.0",
"@octokit/rest": "^20.0.1",
"@release-it/conventional-changelog": "^8.0.1",
"@rive-app/canvas": "^2.25.1",
"@sentry/browser": "^7.47.0",
"@types/workbox-window": "^4.3.4",
"axios": "^1.4.0",
"copy-webpack-plugin": "^11.0.0",
"fluent-ffmpeg": "^2.1.2",
"fs": "^0.0.1-security",
"googleapis": "^118.0.0",
"howler": "^2.2.3",
"lodash-es": "^4.17.21",
"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",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.7.5",
"compression-webpack-plugin": "^11.1.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv": "^17.3.1",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-webpack-plugin": "^4.2.0",
"gts": "^6.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"sass": "^1.80.5",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"workbox-cli": "^7.3.0"
}
}