-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "vit-timetable-parser",
"version": "1.0.0",
"description": "A Timetable Parser for VIT Timetables",
"main": "index.js",
"engines": {
"node": "14.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -e html,js,mjs,json --exec \"npm run tailwind && node index.js\"",
"build": "postcss public/styles/tailwind.css -o public/styles/style.css && mkdir output",
"start": "node index.js",
"tailwind": "postcss public/styles/tailwind.css -o public/styles/style.css"
},
"keywords": [
"vit",
"timetable",
"calendar"
],
"author": "Vaibhav Tekk",
"license": "ISC",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"cheerio-tableparser": "^1.0.1",
"express": "^4.18.1",
"find-remove": "^4.0.4",
"htmlparser2": "^8.0.1",
"ics": "^2.37.0",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.19",
"postcss-cli": "^10.0.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"autoprefixer": "^10.4.8",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8"
}
}