This repository was archived by the owner on Jul 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "quizzy",
"type": "commonjs",
"version": "1.2.2",
"license": "MIT",
"keywords": [],
"main": "./src/index.tsx",
"scripts": {
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "ijl-cli server --port=8099 --with-open-browser",
"build": "npm run clean && ijl-cli build --dev",
"build:prod": "npm run clean && ijl-cli build",
"clean": "rimraf dist",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@ijl/cli": "^5.0.3",
"@ijl/uds-ui": "^1.9.1",
"@mantine/core": "^7.2.2",
"@mantine/hooks": "^7.2.2",
"@reduxjs/toolkit": "^2.0.1",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.19.0",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"reselect": "^4.1.8"
},
"devDependencies": {
"@antfu/eslint-config": "^1.2.1",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"changelogen": "^0.5.5",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"redux-devtools-extension": "^2.13.9",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}