-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 4.36 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 4.36 KB
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
91
92
93
94
95
96
97
{
"scripts": {
"start": "npm run migrate && node ./dist/index.js",
"test": "jest --config=jest.config.js --verbose",
"lint": "eslint src",
"dev:linux": "npm run migrate && concurrently \"npm run watch:babel\" \"npm run watch:tailwind:linux\" \"nodemon -e js --watch dist --ignore dist/public --exec 'node ./dist/index.js'\" \"nodemon -e js,css,html,hbs --watch views --exec 'npm run copy:linux'\" \"nodemon -e js,css,html --watch public --exec 'npm run copy:linux'\"",
"dev:win": "npm run migrate && concurrently \"npm run watch:babel\" \"npm run watch:tailwind:win\" \"nodemon -e js --watch dist --ignore dist/public --exec \\\"node .\\dist\\index.js\\\"\" \"nodemon -e js,css,html,hbs --watch views --exec \\\"npm run copy:win\\\"\" \"nodemon -e js,css,html --watch public --exec \\\"npm run copy:win\\\"\"",
"build:linux": "npm run lint && npm run build:no-lint:linux",
"build:win": "npm run lint && npm run build:no-lint:win",
"build:no-lint:linux": "npm run clean && npm run build:babel && npm run build:tailwind:linux && npm run copy:linux && npm run postbuild",
"build:no-lint:win": "npm run clean && npm run build:babel && npm run build:tailwind:win && npm run copy:win && npm run postbuild",
"build:babel": "cross-env NODE_ENV=production babel src --out-dir dist --extensions \".ts,.tsx\" --no-comments",
"build:babel:development": "cross-env NODE_ENV=development babel src --out-dir dist --extensions \".ts,.tsx\" --no-comments",
"build:tailwind:linux": "tailwindcss -i ./tailwind.css -o ./public/css/style.min.css --minify",
"build:tailwind:win": "tailwindcss -i .\\tailwind.css -o .\\public\\css\\style.min.css --minify",
"postbuild": "cross-env NODE_ENV=production node scripts/postbuild.js",
"watch:tailwind:linux": "npm run build:tailwind:linux -- --watch",
"watch:tailwind:win": "npm run build:tailwind:win -- --watch",
"watch:babel": "npm run build:babel:development -- -w",
"clean": "rimraf dist",
"copy:linux": "copyfiles -u 1 \"views/**/*\" dist/views && copyfiles -u 1 \"public/**/*\" dist/public",
"copy:win": "copyfiles -u 1 \"views\\**\\*\" dist\\views && copyfiles -u 1 \"public\\**\\*\" dist\\public",
"generate-keys": "node ./scripts/generatekeys.js",
"seed": "sequelize-cli db:seed:all",
"migrate": "sequelize-cli db:migrate",
"migration": "npm run migrate",
"db:migration:create": "npx sequelize-cli migration:create --name"
},
"dependencies": {
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"color": "^4.2.3",
"compression": "^1.7.4",
"connect-session-sequelize": "^7.1.7",
"convert-array-to-csv": "^2.0.0",
"cors": "^2.8.5",
"cron": "^3.1.6",
"csv-writer": "^1.6.0",
"dotenv": "^16.4.5",
"email-validator": "^2.0.4",
"express": "^4.19.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.18.0",
"flowbite": "^2.5.2",
"helmet": "^7.1.0",
"html-minifier-terser": "^7.2.0",
"intuit-oauth": "^4.1.2",
"jspdf": "^2.5.1",
"multer": "^1.4.5-lts.1",
"node-2fa": "^2.0.3",
"nodemailer": "^6.9.13",
"password-validator": "^5.3.0",
"sequelize": "^6.37.1",
"serve-static": "^1.15.0",
"sharp": "^0.33.3",
"sqlite3": "^5.1.7",
"stripe": "^16.7.0",
"tippy": "^0.0.0",
"toastr": "^2.1.4",
"tough-cookie": "^4.1.3",
"uuid": "^9.0.1",
"verify-quickbooks-webhooks": "^1.1.6"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/express-handlebars": "^6.0.0",
"@types/jest": "^29.5.12",
"@types/puppeteer": "^7.0.4",
"@types/sequelize": "^4.28.20",
"autoprefixer": "^10.4.18",
"axios-cookiejar-support": "^5.0.1",
"babel-plugin-module-resolver": "^5.0.0",
"babel-preset-minify": "^0.5.2",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"country-to-iso": "^1.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"npm": "^10.5.2",
"rimraf": "^5.0.5",
"sequelize-cli": "^6.6.2",
"tailwindcss": "^3.4.1",
"tailwindcss-patch": "^2.2.3",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.0",
"unplugin-tailwindcss-mangle": "^2.2.2"
}
}