-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.39 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.39 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
{
"name": "tourmanique-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "/",
"scripts": {
"start": "run-s create-config:local vite-start",
"start:dev": "run-s create-config:dev vite-start",
"vite-start": "vite --port 5501",
"build": "tsc && vite build",
"preview": "vite preview --host",
"cypress:run": "cypress run --component",
"cypress:component": "cypress open --component --browser chrome",
"lint": "run-s lint:scss lint:ts lint:ts:build",
"lint:ts:build": "tsc --noEmit",
"lint:ts": "eslint --no-error-on-unmatched-pattern ./{src,cypress}/**/*.{ts,tsx}",
"lint:ts:fix": "eslint --no-error-on-unmatched-pattern ./{src,cypress}/**/*.{ts,tsx} --fix",
"lint:scss": "npx stylelint ./src/**/*.scss",
"lint:scss:fix": "npx stylelint ./src/**/*.scss --fix",
"create-config:dev": "node local-config-builder dev",
"create-config:local": "node local-config-builder local",
"prepare": "husky install"
},
"dependencies": {
"@tanstack/react-query": "^4.29.13",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-loading-skeleton": "^3.3.1",
"react-router-dom": "^6.12.1",
"vite-plugin-svgr": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@testing-library/cypress": "^9.0.0",
"@types/mocha": "^10.0.1",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.0",
"cypress": "^12.14.0",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"postcss-scss": "^4.0.6",
"sass": "^1.63.4",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.6.0",
"ts-node": "10.9.1",
"typescript": "^5.1.3",
"vite": "^4.3.9"
}
}