-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.13 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
{
"version": "0.1.0",
"scripts": {
"db:benchmark": "ts-node src/util/prisma-benchmark.ts",
"scheduleDEPRECATEDDONTUSE": "tsx prisma/seed/util/schedule/schedule-run.ts",
"scrape:assist": "node scrapers/assist-scraper.mjs",
"scrape:cvc": "node scrapers/cvc-scraper-script.mjs",
"scrape:all": "npm run scrape:assist && npm run scrape:cvc",
"seed:institutions": "ts-node prisma/seed/institutions/seed-institutions-script.ts",
"seed:cvc": "ts-node prisma/seed/cvc/seed-cvc-courses-script.ts",
"seed:articulations": "ts-node prisma/seed/articulations/seed-articulations-script.ts",
"seed:all": "npm run seed:institutions && npm run seed:cvc && npm run seed:articulations",
"reformat": "npx prettier . --write && npx eslint --fix .",
"test": "mocha --require ts-node/register src/test/*.ts --exit",
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/src/index.js",
"prod": "ts-node prod.ts"
},
"dependencies": {
"axios": "1.6.8",
"chalk": "^5.3.0",
"cheerio": "1.0.0-rc.12",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "^4.19.2",
"lodash": "^4.17.21",
"pdf2json": "3.0.5",
"pino": "8.19.0",
"pino-pretty": "11.0.0",
"pm2": "^5.3.1",
"prisma-redis-middleware": "4.8.0",
"simple-git": "^3.24.0",
"swagger-jsdoc": "6.2.8",
"swagger-ui-express": "5.0.0",
"tsx": "^4.7.1",
"zod": "3.22.4"
},
"devDependencies": {
"@prisma/client": "5.11.0",
"@types/chai": "4.3.14",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/lodash": "^4.17.0",
"@types/mocha": "10.0.6",
"@types/node": "20.11.30",
"@types/swagger-jsdoc": "6.0.4",
"@types/swagger-ui-express": "4.1.6",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"chai": "4.3.10",
"chai-http": "4.4.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"mocha": "10.2.0",
"nodemon": "3.1.0",
"prettier": "3.2.5",
"prisma": "5.11.0",
"ts-node": "10.9.2",
"typescript": "5.4.3"
},
"engines": {
"node": "20"
}
}