forked from Tietokilta/ilmomasiina
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.15 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.15 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
{
"name": "ilmomasiina",
"version": "3.0.0-alpha.1",
"private": true,
"license": "MIT",
"engines": {
"node": "^24"
},
"packageManager": "pnpm@10.28.0",
"scripts": {
"bootstrap": "pnpm install",
"clean": "pnpm run -r clean",
"build": "pnpm run -r --workspace-concurrency=1 build",
"start": "pnpm run -r --parallel start",
"lint": "eslint packages",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write --list-different packages/*/{src,test}/**/*.{ts,tsx,scss}",
"typecheck": "pnpm run -r --workspace-concurrency=1 typecheck",
"test": "pnpm run -r test",
"test:backend": "pnpm run --filter ilmomasiina-backend test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tietokilta/ilmomasiina"
},
"bugs": {
"url": "https://github.com/Tietokilta/ilmomasiina/issues"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.7.4",
"typescript": "~5.9.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"react-app"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"jquery",
"popper.js",
"eslint"
]
},
"overrides": {
"react-final-form@6.5.9>react": "^19.2.0",
"react-final-form-arrays@3.1.4>react": "^19.2.0",
"email-templates@*>preview-email": "-",
"@types/email-templates@*>juice": "^11.1.0",
"@types/nodemailer@*>@aws-sdk/client-sesv2": "-"
}
}
}