-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "musiy",
"version": "0.1.0",
"engines": {
"node": "18.16.0"
},
"repository": "https://github.com/Pareder/musiy.git",
"author": "Pareder",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npm run eslint && npm run stylelint",
"lint:fix": "npm run eslint:fix && npm run stylelint:fix",
"eslint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"eslint:fix": "eslint src --fix --ext ts,tsx",
"stylelint": "stylelint \"src/**/*.{css,scss}\"",
"stylelint:fix": "stylelint \"src/**/*.{css,scss}\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.8.1",
"dayjs": "^1.11.9",
"graphql": "^16.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.47.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.0",
"postcss-scss": "^4.0.7",
"sass": "^1.65.1",
"stylelint": "^15.10.2",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.1.6",
"vite": "^4.4.9"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint"
],
"src/**/*.{css,scss}": [
"stylelint"
]
}
}