-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 3.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "tanulo-next",
"version": "0.1.0",
"description": "Közös tanuláshoz partnerkeresést segítő alkalmazás",
"license": "MIT",
"scripts": {
"start": "yarn serve",
"build": "yarn build:ts && yarn build:css && yarn lint && yarn copy:static-assets",
"build:prod": "yarn build:ts && yarn build:css && yarn copy:static-assets",
"serve": "node dist/src/server.js",
"migrate": "knex migrate:latest",
"seed": "knex seed:run",
"watch:node": "nodemon",
"watch": "concurrently -k -p \"[{name}]\" -n \"Css,Static,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn watch:css\" \"yarn watch:static-assets\" \"yarn watch:node\"",
"test": "yarn run cypress open",
"build:ts": "etsc",
"build:css": "NODE_ENV=production postcss public/css/tailwind.css -o dist/public/css/styles.css",
"watch:css": "NODE_ENV=development postcss public/css/tailwind.css -o dist/public/css/styles.css -w",
"watch:fe": "concurrently -k -p \"[{name}]\" -n \"Css,Static\" -c \"yellow.bold,cyan.bold\" \"yarn watch:css\" \"yarn watch:static-assets\"",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\"",
"copy:static-assets": "node -r esm copyStaticAssets.js",
"watch:static-assets": "chokidar \"views/**/*.pug\" \"public/js/**/*.js\" -c \"yarn copy:static-assets\"",
"debug": "yarn build && yarn watch:debug",
"serve:debug": "nodemon --inspect",
"watch:debug": "concurrently -k -p \"[{name}]\" -n \"Css,Static,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn watch:css\" \"yarn watch:static-assets\" \"yarn serve:debug\""
},
"dependencies": {
"@tailwindcss/forms": "0.3.4",
"@tailwindcss/typography": "0.4.1",
"autoprefixer": "10.4.0",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"date-fns": "2.27.0",
"dotenv": "10.0.0",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-rate-limit": "5.5.1",
"express-session": "1.17.2",
"express-validator": "6.13.0",
"ics": "2.31.0",
"knex": "0.21.21",
"lusca": "1.7.0",
"markdown-it": "12.3.2",
"multer": "1.4.3",
"node-fetch": "2.6.6",
"nodemailer": "6.7.2",
"objection": "2.2.18",
"passport": "0.5.0",
"passport-oauth2": "1.6.1",
"pg": "8.7.1",
"postcss": "8.4.4",
"postcss-nested": "5.0.6",
"pug": "3.0.2",
"sanitize-html": "2.6.0",
"tailwindcss": "2.2.19",
"winston": "3.3.3"
},
"devDependencies": {
"@types/compression": "1.7.2",
"@types/cookie-parser": "1.4.2",
"@types/errorhandler": "1.5.0",
"@types/express": "4.17.13",
"@types/express-session": "1.17.4",
"@types/faker": "5.5.9",
"@types/lusca": "1.7.1",
"@types/markdown-it": "12.2.3",
"@types/multer": "1.4.7",
"@types/node": "16.11.11",
"@types/node-fetch": "3.0.2",
"@types/nodemailer": "6.4.4",
"@types/passport": "1.0.7",
"@types/passport-oauth2": "1.4.11",
"@types/sanitize-html": "2.6.0",
"@types/shelljs": "0.8.9",
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"chokidar-cli": "3.0.0",
"concurrently": "6.4.0",
"cypress": "9.1.1",
"esbuild": "0.14.2",
"esbuild-node-tsc": "1.8.2",
"eslint": "8.3.0",
"faker": "5.5.3",
"nodemon": "2.0.15",
"postcss-cli": "9.0.2",
"shelljs": "0.8.4",
"ts-node": "10.4.0",
"typescript": "4.5.2"
}
}