-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 906 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
{
"name": "chatstats",
"version": "1.0.0",
"description": "Get the statistics of your WhatsApp conversations",
"main": "./src/server.js",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"tailwind watch": "npx tailwindcss -i ./public/styles/input.css -o ./public/styles/output.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobiasMarion/chatStats.git"
},
"keywords": [],
"author": "Tobias Cadoná Marion",
"license": "ISC",
"bugs": {
"url": "https://github.com/tobiasMarion/chatStats/issues"
},
"homepage": "https://github.com/tobiasMarion/chatStats#readme",
"dependencies": {
"dayjs": "^1.11.7",
"decompress": "^4.2.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"nodemon": "^2.0.20",
"tailwindcss": "^3.2.7"
}
}