-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.16 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
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
120
121
122
123
124
{
"private": true,
"name": "@dcgw/super-metronome-hero",
"version": "0.0.0-development",
"description": "A rhythm game made for FuckThisJam",
"keywords": [
"fuck-this-jam",
"game",
"typescript"
],
"author": "George Weller <[email protected]>",
"contributors": [
"Daniel Cassidy <[email protected]> (https://www.danielcassidy.me.uk/)"
],
"homepage": "https://github.com/dcgw/super-metronome-hero",
"bugs": "https://github.com/dcgw/super-metronome-hero",
"repository": "github:dcgw/super-metronome-hero",
"license": "UNLICENSED",
"type": "module",
"scripts": {
"build": "webpack --env production",
"fix": "tsc && eslint . --fix && prettier --write .",
"lint": "tsc && eslint . && prettier --check .",
"semantic-release": "semantic-release",
"start": "webpack serve --open",
"test": "ava"
},
"engines": {
"node": "^20.6 || >=22"
},
"dependencies": {
"@dcgw/excalibur-text": "1.1.1",
"@softwareventures/dictionary": "2.1.1",
"@softwareventures/nullable": "3.2.0",
"@types/domready": "1.0.2",
"@types/webpack-env": "1.18.5",
"domready": "1.0.8",
"excalibur": "0.26.0",
"tslib": "2.8.1",
"unknown": "0.2.6"
},
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@softwareventures/eslint-config": "9.1.1",
"@softwareventures/prettier-config": "4.0.0",
"@softwareventures/webpack-config": "6.0.0",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"ava": "6.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-sonarjs": "2.0.4",
"html-webpack-plugin": "5.6.3",
"prettier": "3.3.3",
"resolve-typescript-plugin": "2.0.1",
"semantic-release": "19.0.5",
"semantic-release-s3-upload": "2.1.1",
"ts-loader": "9.5.1",
"tsimp": "2.0.12",
"typescript": "5.7.3",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.2"
},
"eslintConfig": {
"root": true,
"extends": "@softwareventures"
},
"prettier": "@softwareventures/prettier-config",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "yarn build"
}
],
[
"semantic-release-s3-upload",
{
"uploads": [
{
"src": {
"dir": "./dist"
},
"dest": {
"bucket": "super-metronome-hero"
}
}
]
}
]
]
}
}