-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
67
68
69
70
{
"name": "inner-circle",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/McStanley/inner-circle.git"
},
"author": {
"name": "Stanisław Olejniczak",
"email": "0stanislawolejniczak0@gmail.com",
"url": "https://github.com/McStanley"
},
"scripts": {
"build": "npm run clean && tsc --build --verbose && npm run tailwind:build",
"clean": "rimraf ./dist ./public/styles/main.css",
"debug": "DEBUG=inner-circle:* npm run dev",
"dev": "conc -n server,tailwind -c green,cyan \"nodemon ./src/server.ts\" \"npm run tailwind:watch\"",
"start": "node ./dist/server.js",
"tailwind:build": "tailwindcss -i ./styles/tailwind.css -o ./public/styles/main.css",
"tailwind:watch": "tailwindcss -i ./styles/tailwind.css -o ./public/styles/main.css --watch"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-mongo": "^5.1.0",
"cookie-parser": "~1.4.4",
"dayjs": "^1.11.10",
"debug": "~2.6.9",
"dotenv": "^16.4.1",
"envalid": "^8.0.0",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-session": "^1.18.0",
"express-validator": "^7.0.1",
"http-errors": "~1.6.3",
"mongoose": "^8.1.1",
"morgan": "~1.9.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.2",
"@prettier/plugin-pug": "^3.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.6",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.16",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/serve-favicon": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.0.3",
"prettier": "3.1.0",
"prettier-plugin-packagejson": "^2.4.10",
"prettier-plugin-tailwindcss": "^0.5.11",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}