-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.57 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": "quiz-app",
"version": "1.0.0",
"description": "Made for EIC",
"main": "index.js",
"scripts": {
"dev": "nodemon --delay 500ms -r dotenv/config server.js",
"dev:build:css": "npx tailwindcss -i resources/css/tailwind.css -o resources/css/style.css --watch",
"dev:build:babel": "babel --watch resources/js/ --out-dir resources/precompiled-js/ --presets=@babel/preset-env,@babel/preset-react --ignore 'resources/js/luxon.js','resources/js/react-dom.development-17.0.2.js','resources/js/react.development-17.js','resources/js/jquery-ui-1.13.1/jquery-ui.js'",
"build:css": "npx tailwindcss -i resources/css/tailwind.css -o resources/css/style.css --minify",
"build:babel": "babel resources/js/ --out-dir resources/precompiled-js/ --minified --presets=@babel/preset-env,@babel/preset-react --ignore 'resources/js/luxon.js','resources/js/react-dom.development-17.0.2.js','resources/js/react.development-17.js','resources/js/jquery-ui-1.13.1/jquery-ui.js'",
"start": "node -r dotenv/config server.js",
"test": "mocha --timeout 10000 --exit -r dotenv/config",
"cron": "node -r dotenv/config cron-ping.js"
},
"browserslist": "> 0.25%, not dead",
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.316.0",
"@aws-sdk/client-ses": "^3.316.0",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"bull": "^4.8.3",
"caniuse-lite": "^1.0.30001441",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"compression": "^1.7.4",
"config": "^3.3.7",
"cookie-parser": "^1.4.5",
"cookie-session": "^2.0.0",
"csv-parse": "^4.16.3",
"csv-stringify": "^6.0.5",
"daisyui": "^2.51.5",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.2",
"json-2-csv": "^3.15.0",
"luxon": "^2.3.0",
"mocha": "^10.0.0",
"moment": "^2.29.1",
"multer": "^1.4.3",
"multer-s3": "^3.0.1",
"mysql2": "^2.3.0",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"randomstring": "^1.2.1",
"react-select": "^4.3.1",
"redis": "^4.1.0",
"sequelize": "^6.31.0",
"socket.io": "^4.6.1"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@playwright/test": "^1.30.0",
"dotenv": "^10.0.0",
"nodemon": "^1.3.3",
"postcss": "^8.4.6",
"sequelize-cli": "^6.4.1",
"tailwindcss": "^3.2.4"
}
}