-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 3.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@digabi/exam-engine-root",
"version": "1.0.7",
"private": true,
"repository": "https://github.com/digabi/exam-engine",
"author": "Matriculation Examination Board, Finland",
"license": "EUPL-1.1",
"engines": {
"node": "18.17.0"
},
"devDependencies": {
"@digabi/eslint-config": "^3.0.0",
"@swc-node/jest": "^1.1.1",
"@swc/helpers": "^0.5.2",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/child-process-promise": "^2.2.1",
"@types/classnames": "^2.2.8",
"@types/cloneable-readable": "^2.0.0",
"@types/css-minimizer-webpack-plugin": "^3.2.1",
"@types/ffmpeg-static": "^3.0.0",
"@types/fontfaceobserver": "^2.1.0",
"@types/jest": "^29.5.3",
"@types/loader-utils": "^2.0.0",
"@types/lodash": "^4.14.149",
"@types/lodash-es": "^4.17.3",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/node": "^22.7.4",
"@types/react": "^18.2.21",
"@types/react-css-transition-replace": "^2.1.3",
"@types/react-dom": "^18.0.1",
"@types/react-redux": "^7.1.5",
"@types/react-test-renderer": "^18.0.0",
"@types/tmp": "^0.2.0",
"@types/uuid": "^10.0.0",
"@types/webpack-dev-server": "^4.7.2",
"@types/yargs": "^17.0.0",
"@types/yauzl-promise": "^4.0.0",
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"bundlewatch": "^0.4.0",
"concurrently": "^9.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-react": "^7.37.0",
"fast-check": "^3.0.0",
"full-icu": "^1.3.0",
"glob": "^11.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.0.1",
"jest-junit": "^16.0.0",
"jest-snapshot-serializer-raw": "^1.1.0",
"lerna": "^8.1.2",
"prettier": "^3.0.0",
"puppeteer": "^23.4.1",
"tmp-promise": "^3.0.2",
"typescript": "^5.6.2",
"uuid": "^11.0.2",
"yauzl-promise": "^4.0.0"
},
"scripts": {
"bundlewatch": "bundlewatch --config .bundlewatch.config.js",
"start": "node packages/cli/dist/start.js",
"build": "tsc --build && npm run --workspace @digabi/exam-engine-core build",
"build:analyze": "tsc --build && npm run --workspace @digabi/exam-engine-core build:analyze && webpack-bundle-analyzer packages/core/stats.json packages/core/dist",
"watch": "concurrently -n 'tsc,webpack' -c 'blue,green' 'tsc --build --watch' 'npm run --workspace @digabi/exam-engine-core watch'",
"lerna": "lerna",
"lint": "prettier packages/core/src/**/*.less --check && eslint .",
"ee": "node packages/cli/dist/index.js",
"test": "npm run test-jest && npm run test-ct -- --project=chrome",
"prepare": "tsc --build --force && npm run --workspace @digabi/exam-engine-core build",
"test-jest": "NODE_ICU_DATA=node_modules/full-icu jest --runInBand",
"test-ct": "playwright test -c packages/core/playwright-ct.config.ts"
},
"workspaces": [
"packages/**"
],
"dependencies": {
"focus-trap-react": "^10.2.2"
}
}