-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 831 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 831 Bytes
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
{
"name": "p5js-with-typescript",
"version": "1.0.0",
"description": "A template for a p5.js sketch using Typescript",
"scripts": {
"start": "parcel index.html --open",
"build": "parcel build index.html",
"clean": "rimraf dist",
"clean-deep": "rimraf package-lock.json && rimraf dist && rimraf .parcel-cache && rimraf node_modules",
"server": "npx tsx ./src/server/app.ts",
"upload": "npx tsx ./src/util/rotateFiles.ts"
},
"dependencies": {
"@types/p5": "^1.7.0",
"jimp": "^0.22.10",
"p5": "^1.7.0",
"pino": "^8.16.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/pino": "^7.0.5",
"@types/ws": "^8.5.7",
"parcel": "^2.10.0",
"rimraf": "5.0.5",
"tsx": "^3.13.0"
},
"keywords": [
"p5js",
"typescript"
]
}