-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "react-mfe-boilerplate",
"private": false,
"main": "index.js",
"repository": "https://github.com/MakingSense/react-mfe-boilerplate",
"author": "Making Sense",
"license": "MIT",
"type": "module",
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@cspell/dict-es-es": "3.0.0",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/node": "20.14.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"cspell": "8.12.1",
"editorconfig-checker": "5.1.8",
"esbuild": "0.23.0",
"eslint-config-love": "47.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"esbuild-plugin-manifest": "1.0.4",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.0.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.3",
"typescript": "5.5.4"
},
"importSort": {
".ts, .tsx": {
"parser": "typescript",
"style": "module-scoped"
}
},
"scripts": {
"start": "node start.mjs",
"dist": "node dist.mjs",
"verify-format": "npm run prettier-check && npx editorconfig-checker --exclude node_modules && npx eslint 'src/**'",
"verify-spell": "cspell .",
"fix-format": "npm run prettier-fix && npx eslint 'src/**' --fix",
"prettier-fix": "prettier --ignore-unknown --write \"**/**\"",
"prettier-check": "prettier --ignore-unknown --check \"**/**\"",
"test": "jest",
"test:watch": "jest --watchAll"
}
}