-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.26 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
{
"name": "admissions",
"version": "1.0.0",
"description": "Admission system for Abakus",
"main": "index.js",
"repository": "git@github.com:webkom/admissions.git",
"author": "Webkom <webkom@abakus.no>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prettier": "prettier --write \"**/*.{ts,tsx,css}\"",
"lint:prettier": "prettier -l \"**/*.{ts,tsx,css}\"",
"lint": "yarn lint:prettier && yarn lint:js && yarn lint:css",
"lint:js": "eslint '**/*.{ts,tsx}' --ignore-path .prettierignore",
"lint:css": "stylelint './frontend/**/*.css'",
"types": "tsc",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"knip": "knip --files --exports"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@sentry/browser": "^7.101.1",
"@tanstack/react-query": "^5.37.1",
"@tanstack/react-table": "^8.17.3",
"@webkom/lego-bricks": "^1.2.1",
"axios": "^1.7.2",
"formik": "^2.4.6",
"js-cookie": "^3.0.5",
"luxon": "^3.4.4",
"react": "^18.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-router-dom": "6.23.1",
"react-textarea-autosize": "^8.5.3",
"styled-components": "6.1.11"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.2.19",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.1",
"cypress": "^13.13.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"knip": "^5.27.3",
"prettier": "3.3.3",
"stylelint": "^16.8.2",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.5.4",
"vite": "^4.5.3",
"yup": "^1.4.0"
},
"prettier": {
"singleQuote": false
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"custom-property-empty-line-before": null,
"property-no-unknown": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
}
]
}
}
}