-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "Forum-App",
"version": "1.0.0",
"description": "Forum app",
"main": "index.js",
"scripts": {
"start": "ts-node ./bin/www",
"tailwind:css": "postcss public/stylesheets/tailwind.css -o public/stylesheets/styles.css",
"build:js": "parcel build ./public/javascript/index.js --out-dir ./public/javascript --out-file bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ethical-Hacking-CAIS/Forum-App.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ethical-Hacking-CAIS/Forum-App/issues"
},
"homepage": "https://github.com/Ethical-Hacking-CAIS/Forum-App#readme",
"dependencies": {
"@fontsource/inter": "4.5.2",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.11",
"cookie-parser": "^1.4.6",
"dotenv": "^5.0.1",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"pug": "^3.0.2",
"rehype-katex": "^6.0.2",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"@types/mysql": "^2.15.21",
"parcel-bundler": "^1.12.5"
}
}