This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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
51
52
53
54
55
56
57
58
{
"name": "p5-runner",
"version": "1.2.1",
"description": "A tool for running and exporting p5.js sketches in a modern ESNext environment",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"start": "node lib/server/cli.js",
"dev": "concurrently npm:dev:client npm:dev:server",
"dev:client": "tsc --watch --project tsconfig.client.json",
"dev:server": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulkre/p5-runner.git"
},
"keywords": [],
"author": "Paul Kretschel",
"license": "ISC",
"bugs": {
"url": "https://github.com/paulkre/p5-runner/issues"
},
"homepage": "https://github.com/paulkre/p5-runner#readme",
"bin": {
"p5-runner": "lib/server/cli.js"
},
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"is-valid-path": "^0.1.1",
"mkdirp": "^0.5.1",
"p5": "^0.9.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/html-webpack-plugin": "^3.2.1",
"@types/is-valid-path": "^0.1.0",
"@types/mkdirp": "^0.5.2",
"@types/p5": "^0.9.0",
"@types/webpack": "^4.41.2",
"@types/webpack-dev-middleware": "^2.0.3",
"@types/webpack-dev-server": "^3.9.0",
"@types/webpack-hot-middleware": "^2.25.0",
"concurrently": "^5.0.2",
"nodemon": "^1.19.4",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}