forked from jeffuntalan/exploding-chickens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.17 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
59
60
61
62
63
64
65
66
{
"name": "exploding-chickens",
"version": "2.0.0-beta",
"description": "A beautiful, online alternative to the popular Exploding Kittens card game (just with chickens).",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "cd public/css && cross-env NODE_ENV=production npx tailwindcss-cli@latest build -o tailwind.css -c ../../config/tailwind.config.js && cd ../../ && nodemon app.js develop --ignore public/ --ignore templates/ --ignore config/stats.json",
"build": "cd public/css && cross-env NODE_ENV=production npx tailwindcss-cli@latest build -o tailwind.css -c ../../config/tailwind.config.js && cd ../../",
"test": "nyc mocha",
"codecov": "nyc --reporter=lcov mocha && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/rak3rman/exploding-chickens.git"
},
"author": "rak3rman, sengdaojones, vmdo3, & williamyang10",
"license": "MIT",
"bugs": {
"url": "https://github.com/rak3rman/exploding-chickens/issues"
},
"homepage": "https://github.com/rak3rman/exploding-chickens#readme",
"dependencies": {
"async-waterfall": "^0.1.5",
"bad-words": "^3.0.4",
"body-parser": "^1.18.3",
"chai": "^4.3.0",
"chalk": "^4.1.0",
"codecov": "^3.8.3",
"cookie-parser": "^1.4.4",
"cross-env": "^7.0.3",
"daisyui": "^1.14.3",
"data-store": "^3.1.0",
"ejs": "^2.6.1",
"eris": "^0.15.1",
"eris-embed-builder": "^0.1.2",
"express": "^4.17.1",
"express-session": "^1.15.6",
"fastify": "^3.9.2",
"fastify-formbody": "^5.0.0",
"fastify-rate-limit": "^5.0.0",
"fastify-socket.io": "^1.0.1",
"fastify-static": "^4.4.2",
"handlebars": "^4.7.7",
"http": "0.0.0",
"http-errors": "^1.7.2",
"mocha": "^8.3.0",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"mongoose": "^6.0.9",
"morgan": "^1.9.1",
"nanoid": "^3.1.23",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"point-of-view": "^4.7.0",
"sweetalert2": "^10.16.2",
"unique-names-generator": "^4.3.1",
"uuid": "^3.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"autoprefixer": "^10.4.1",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.8"
}
}