forked from jbakse/p5.party
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "p5.party",
"version": "0.6.1",
"author": "Justin Bakse",
"license": "MIT",
"description": "Pre-release! An easy to use library for simple multi-user sketches with p5.js.",
"keywords": [
"p5",
"multiuser",
"multiplayer",
"library"
],
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist"
],
"main": "src/index_p5.js",
"sideEffects": [
"./src/index.p5.js",
"./src/party_debug.css"
],
"engines": {
"node": "14.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jbakse/deepstream_test.git"
},
"scripts": {
"prebuild": "rm -f p5.party.zip",
"build": "webpack --config webpack.prod.js",
"profile": "webpack --config webpack.profile.js",
"watch": "webpack --watch --config webpack.dev.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"serve": "PORT=${PORT:-6020} deepstream start",
"test": "echo \"No test specified\" && exit 0",
"netlify": "npm run build && cp -r dist public",
"prerelease": "npm run build && npm run pack",
"release": "np",
"pack": "npm run build && ln -s public/examples && zip p5.party.zip -r dist -r examples && rm -r examples && unzip -l p5.party.zip"
},
"dependencies": {
"@deepstream/client": "^5.2.6",
"@deepstream/server": "^5.2.6",
"core-js": "^3.20.2",
"on-change": "^4.0.0",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"babel-loader": "^8.2.3",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-p5js": "^1.1.0",
"np": "^7.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.66.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
}
}