-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "learn-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"heroku-postbuild": "npm run build",
"sendreminders": "ts-node -r dotenv/config --project scripts/tsconfig.json scripts/send-reminders.ts dotenv_config_path=.env.local"
},
"dependencies": {
"@types/cookie": "^0.4.1",
"@types/lodash": "^4.14.175",
"@types/react": "^17.0.24",
"autoprefixer": "^10.3.1",
"axios": "^0.26.0",
"chart.js": "^3.7.0",
"cookie": "^0.4.1",
"daisyui": "^2.51.4",
"dotenv": "^16.0.0",
"esm": "^3.2.25",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mongoose": "^5.13.3",
"next": "^12.1.6",
"postcss": "^8.2.13",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwindcss": "^3.0.23",
"ts-node": "^10.2.1",
"twilio": "^3.66.0",
"typescript": "^4.4.3",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3"
}
}