-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.62 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.62 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
{
"name": "p5-webpack-typescript-template",
"license": "MIT",
"private": true,
"description": "A template project for using p5.js with TypeScript and webpack.",
"author": {
"name": "Brittni Watkins",
"url": "https://blwatkins.github.io/"
},
"homepage": "https://github.com/blwatkins/p5-webpack-typescript-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/blwatkins/p5-webpack-typescript-template.git"
},
"bugs": {
"url": "https://github.com/blwatkins/p5-webpack-typescript-template/issues"
},
"type": "module",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"build": "webpack --mode production",
"serve": "webpack-dev-server --mode production",
"build:dev": "webpack --mode development",
"serve:dev": "webpack-dev-server --mode development",
"build:check": "npm run build:dev && npm run build",
"lint:js": "eslint -c eslint.config.js.mjs .",
"lint:ts": "eslint -c eslint.config.ts.mjs .",
"lint:all": "npm run lint:js && npm run lint:ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"p5": "^2.2.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"css-loader": "^7.1.4",
"eslint": "^10.3.0",
"eslint-plugin-es-x": "^9.6.0",
"globals": "^17.6.0",
"html-webpack-plugin": "^5.6.7",
"mini-css-extract-plugin": "^2.10.2",
"ts-loader": "^9.5.7",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
}
}