-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.12 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.12 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "tsc && vite build",
"e2e:open": "concurrently -k -s first \"npm start\" \"cypress open\"",
"e2e:run": "concurrently -k -s first \"npm start\" \"cypress run\"",
"format:check": "prettier -c .",
"format:fix": "prettier -w .",
"lint:check": "eslint ./src && stylelint **/*.scss && markdownlint .",
"lint:fix": "eslint ./src --fix && stylelint **/*.scss --fix && markdownlint . --fix",
"prepare": "husky install",
"preview": "vite preview",
"sanity-check": "npm run lint:check && npm run format:check && npm test && npm run e2e:run",
"start": "vite --port 3000",
"test:watch": "vitest watch --coverage",
"test": "vitest run --coverage"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.0",
"@commitlint/config-conventional": "17.4.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"@vitejs/plugin-react": "3.0.1",
"@vitest/coverage-c8": "^0.26.3",
"concurrently": "7.6.0",
"cypress": "12.3.0",
"eslint": "8.31.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-testing-library": "5.9.1",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"lint-staged": "13.1.0",
"markdownlint": "0.27.0",
"markdownlint-cli": "0.33.0",
"prettier": "2.8.2",
"sass": "1.57.1",
"stylelint": "14.16.1",
"stylelint-config-prettier-scss": "0.0.1",
"stylelint-config-standard-scss": "6.1.0",
"typescript": "4.9.4",
"vite": "4.0.4",
"vitest": "0.26.3"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{css,scss}": "stylelint --fix",
"*.{js,ts,tsx,css,scss,md,json}": "prettier --write",
"*.md": "markdownlint --fix"
}
}