-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "chaos-game",
"version": "2.1.0",
"main": "index.js",
"repository": "https://github.com/danielhoward-me/chaos",
"author": "Toffee1347 <danielnhoward93@gmail.com>",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.42.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.27.5",
"html-webpack-plugin": "^5.5.1",
"mini-css-extract-plugin": "^2.7.6",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4"
},
"type": "module",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/gifencoder": "^2.0.1",
"canvas": "^2.11.2",
"express": "^4.18.2",
"gifencoder": "^2.0.1",
"puppeteer": "^20.5.0",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"build": "env NODE_ENV=production webpack build",
"dev": "webpack serve",
"lint": "eslint --ext ts --max-warnings 0 src dev",
"tool": "bash ./dev/run-tool"
},
"engines": {
"node": "20.10.0"
}
}