-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 854 Bytes
/
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
{
"name": "twitch-plinko",
"version": "1.0.0",
"description": "Play plinko on Twitch",
"main": "index.js",
"scripts": {
"test": "jest",
"watch": "watchify client/plinko.js -o public/app.js -v",
"build": "browserify client/plinko.js -o public/app.js --debug",
"start": "npm run watch & nodemon server.js"
},
"keywords": [
"Plinko",
"Twitch"
],
"author": "Sean Barrett",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"matter-js": "^0.14.2",
"multer": "^1.4.2",
"node-sass": "^4.13.1",
"p5": "^1.0.0",
"poly-decomp": "^0.3.0",
"socket.io": "^2.3.0",
"tmi.js": "^1.5.0"
},
"devDependencies": {
"browserify": "^16.5.0",
"jest": "^25.2.3",
"nodemon": "^2.0.2",
"watchify": "^3.11.1"
}
}