-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.29 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
98
99
100
101
102
{
"name": "suoritustarkistin",
"version": "0.1.0",
"description": "Tool for collecting course completions.",
"homepage": "https://github.com/UniversityOfHelsinkiCS/suoritustarkistin#readme",
"bugs": {
"url": "https://github.com/UniversityOfHelsinkiCS/suoritustarkistin/issues"
},
"license": "ISC",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/UniversityOfHelsinkiCS/suoritustarkistin.git"
},
"main": "index.js",
"scripts": {
"dev": "docker compose up",
"test": "npm run test:clean && docker compose -f docker-compose.e2e.yml up --abort-on-container-exit --exit-code-from e2e",
"start": "node index.js",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"lint:quiet": "oxlint --quiet .",
"format": "oxfmt",
"format:check": "oxfmt --check",
"prepare": "husky",
"cypress:open": "npm run test:clean && npm run start:cypress-open",
"start:cypress": "docker compose -f docker-compose.e2e.yml run --service-ports e2e npm run start:dev",
"start:ci": "npm-run-all -r -p start cypress:run",
"start:cypress-open": "npm-run-all -p start:cypress cypress:interactive",
"cypress:run": "npx cypress run --headless",
"cypress:interactive": "npx cypress open --e2e -P ./",
"test:integration": "node --test 'server/**/*.test.js'",
"build": "APP_ENV=$NODE_ENV vite build",
"start:dev": "nodemon index.js",
"test:build": "APP_ENV=$NODE_ENV vite build",
"test:clean": "docker compose -f docker-compose.e2e.yml rm -vf && docker compose -f docker-compose.e2e.yml build",
"e2e:compose": "docker compose -f docker-compose.e2e.yml -f docker-compose.e2e.local.yml",
"e2e:up": "npm run e2e:compose -- up -d --wait",
"e2e:spec": "npm run e2e:up && npm run e2e:compose -- exec -T e2e npx cypress run --headless --spec",
"e2e:down": "npm run e2e:compose -- down -v --remove-orphans",
"cli": "node ./server/scripts/fixCompletionDates.js"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@mui/icons-material": "9.3.1",
"@mui/material": "9.3.1",
"@sentry/node": "10.70.0",
"@sentry/react": "10.70.0",
"@vitejs/plugin-react": "6.0.5",
"axios": "1.19.0",
"dotenv": "17.4.2",
"express": "5.2.1",
"lodash": "4.18.1",
"module-alias": "2.3.4",
"moment": "2.30.1",
"node-cron": "4.6.0",
"nodemailer": "9.0.5",
"pg": "8.23.0",
"pg-hstore": "2.3.4",
"react": "19.2.8",
"react-datepicker": "9.1.0",
"react-dom": "19.2.8",
"react-dropzone": "20.1.0",
"react-redux": "9.3.0",
"react-router-dom": "7.18.2",
"redux": "5.0.1",
"redux-thunk": "3.1.0",
"sequelize": "6.37.8",
"umzug": "2.3.0",
"unfuck-utf8-headers-middleware": "1.0.1",
"uuid": "14.0.1",
"vite": "8.2.1",
"winston": "3.19.0",
"winston-loki": "6.1.7"
},
"devDependencies": {
"@faker-js/faker": "10.5.0",
"cypress": "15.20.1",
"husky": "9.1.7",
"nodemon": "3.1.14",
"npm-run-all": "4.1.5",
"oxfmt": "0.63.0",
"oxlint": "1.78.0"
},
"nodemonConfig": {
"ignore": [
"dist/*",
"client/*",
"cypress/*",
"index.html",
"vite.config.mjs"
]
},
"engines": {
"node": ">=24 <25"
},
"_moduleAliases": {
"@server": "server",
"@shared": "utils"
}
}