-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 952 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": "WhatsAppWrapped",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-static": "cd static/src && tsc --outDir ../js ./*.ts",
"dev": "nodemon -w src --exec \"tsc --outDir ./build && cd build && node index.js\"",
"start": "tsc --outDir ./build && cd build && node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/connect-busboy": "0.0.4",
"@types/date-and-time": "^0.13.0",
"@types/express": "^4.17.13",
"@types/formidable": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"axios": "^0.24.0",
"connect-busboy": "0.0.2",
"date-and-time": "^2.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"formidable": "^2.0.1",
"fs-extra": "^10.0.0",
"multer": "^1.4.4",
"typescript": "^4.5.3"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}