-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 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
48
49
50
{
"name": "glitch2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint libglitch glitcher",
"build:lib": "webpack --config webpack.config.lib.js --mode production",
"build:ui": "webpack --config webpack.config.ui.js --mode production",
"dev": "webpack serve --config webpack.config.ui.js --mode development"
},
"author": "Aarni Koskela <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"css-loader": "7.1.1",
"file-loader": "^6.2.0",
"gif.js": "^0.2.0",
"html-webpack-plugin": "5.6.0",
"jpeg-js": "^0.4.4",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lodash": "^4.17.21",
"mithril": "^2.0.4",
"style-loader": "4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@types/gif.js": "^0.2.5",
"@types/mithril": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "<9",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"webpack-dev-server": "^5.0.4"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}