-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "webgm",
"version": "0.0.0",
"description": "Web based version of Game Maker 8.",
"license": "GPL-3.0-or-later",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ignore-path .gitignore src",
"stylelint": "npx stylelint \"**/*.scss\"",
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"clean": "run-script-os",
"clean:default": "rm -r dist-dev && rm -r dist",
"clean:windows": "rmdir dist-dev /s /q && rmdir dist /s /q"
},
"dependencies": {
"@tonejs/midi": "^2.0.28",
"jszip": "^3.10.1",
"ohm-js": "^17.1.0",
"seedrandom": "^3.0.5",
"tone": "^15.0.4"
},
"devDependencies": {
"css-loader": "^7.1.2",
"eslint": "^8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-webpack-plugin": "^4.2.0",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"run-script-os": "^1.1.6",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"stylelint": "^16.6.1",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"url-loader": "^4.1.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.1.0"
}
}