-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.44 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.44 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
{
"name": "teachyourselfmath",
"version": "0.1.0",
"description": "make learning math fun!",
"main": "src/index.js",
"author": "viveknathani",
"license": "MIT",
"scripts": {
"lint": "npx eslint --fix src/",
"format": "npx prettier --write src/",
"build": "yarn lint && yarn format && yarn tsc && yarn copy-files && yarn minify-css && yarn minify-js",
"start": "yarn migrate:up && yarn build && node build/index.js",
"migrate": "node-pg-migrate -m src/database/migrations",
"copy-files": "npx copyfiles -u 1 \"src/web/**/*\" build/",
"minify-css": "npx postcss src/web/styles/ -d build/web/styles/",
"minify-js": "npx uglifyjs-folder src/web/scripts/ -eo build/web/scripts/ -x .js",
"migrate:up": "yarn migrate up",
"migrate:down": "yarn migrate down",
"migrate:create": "yarn migrate create"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/connect-ensure-login": "^0.1.9",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.4",
"@types/memoizee": "^0.4.11",
"@types/multer": "^1.4.11",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.10.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"copyfiles": "^2.4.1",
"eslint": "^8.52.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@bull-board/api": "^5.9.1",
"@bull-board/express": "^5.9.1",
"@google/generative-ai": "^0.19.0",
"@types/express-fileupload": "^1.4.4",
"axios": "^1.13.5",
"bcrypt": "^5.1.1",
"bullmq": "^4.13.2",
"connect-ensure-login": "^0.1.1",
"cors": "^2.8.5",
"cron-validate": "^1.4.5",
"cssnano": "^7.0.3",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.20.0",
"express-rate-limit": "^7.1.5",
"express-session": "^1.18.0",
"express-winston": "^4.2.0",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"memoizee": "^0.4.17",
"multer": "^2.1.1",
"nanoid": "^5.0.3",
"node-pg-migrate": "^6.2.2",
"openai": "^4.52.3",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pdf-lib": "^1.17.1",
"pdf2pic": "^3.1.1",
"pg": "^8.11.3",
"postcss": "^8.4.39",
"postcss-cli": "^11.0.0",
"rate-limit-redis": "^4.2.0",
"uglifyjs-folder": "^3.3.0",
"winston": "^3.11.0",
"zod": "^3.23.8"
}
}