-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.59 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
{
"name": "mockiato",
"private": true,
"type": "module",
"dependencies": {
"@mantine/core": "^7.3.2",
"@mantine/form": "^7.3.2",
"@mantine/hooks": "^7.3.2",
"@mantine/modals": "^7.3.2",
"@mantine/next": "^6.0.21",
"@mantine/notifications": "^7.3.2",
"@mantine/utils": "^6.0.21",
"@mswjs/interceptors": "0.25.2",
"@tabler/icons-react": "^2.44.0",
"@vitejs/plugin-react": "^4.2.1",
"classnames": "^2.3.2",
"jsoneditor": "^9.9.0",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^5.0.10",
"vitest": "^1.1.0",
"vite-tsconfig-paths": "^4.2.2"
},
"devDependencies": {
"@types/chrome": "^0.0.254",
"@types/jsoneditor": "^9.9.5",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typescript": "^5.2.2",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^35.0.0"
},
"scripts": {
"dev": "VITE_NODE_ENV=development vite",
"build": "VITE_NODE_ENV=production pnpm run build:ext && pnpm run build:content && pnpm run build:mockiato && pnpm run build:devtools && pnpm run build:popup",
"build:ext": "vite build",
"build:content": "vite build --config config/vite.config.content.ts",
"build:mockiato": "vite build --config config/vite.config.mockiato.ts",
"build:devtools": "vite build --config config/vite.config.devtools.ts",
"build:popup": "vite build --config config/vite.config.popup.ts",
"lint": "pnpm run lint:ts && pnpm run lint:css",
"lint:ts": "eslint . --ext ts,tsx",
"lint:css": "stylelint src/**/*.css",
"typecheck": "npx tsc --noEmit --project ./tsconfig.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}