-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 868 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 868 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
{
"name": "p5-typescript-boilerplate",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "run-p start:compile start:browser start:lint",
"start:compile": "spack && chokidar src/*.ts spack.config.js -c spack && yarn run start:lint",
"start:lint": "eslint dist/main.js --fix",
"start:browser": "browser-sync start --server -w"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.89",
"@types/p5": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"browser-sync": "^2.29.3",
"browserslist": "^4.21.11",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.28.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2"
},
"dependencies": {
"p5": "^1.7.0"
}
}