-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.64 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
69
70
71
72
73
74
75
76
77
78
{
"name": "mellifluous",
"version": "1.0.0",
"description": "Stream music, find song lyrics, and discover new artists, albums, and music",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "webpack server --open",
"build": "NODE_ENV=production webpack",
"typecheck": "tsc",
"prettier": "prettier --ignore-path=.gitignore --loglevel=silent --write .",
"stylelint": "stylelint 'src/**/*.scss' --config='config/stylelint.config.cjs' --cache --cache-location='lint_cache/.stylelintcache' --fix",
"eslint": "eslint 'src/**/*.{js,ts,tsx}' --config='config/.eslintrc.cjs' --cache --cache-location='lint_cache/.eslintcache' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackthta/mellifluous.git"
},
"author": "Jack Ta",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/jackthta/mellifluous/issues"
},
"homepage": "https://github.com/jackthta/mellifluous#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/country-list": "^2.1.1",
"@types/dompurify": "^3.0.2",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.21",
"postcss-advanced-variables": "^3.0.1",
"postcss-loader": "^7.2.4",
"postcss-preset-env": "^8.3.0",
"prettier": "2.8.7",
"react-refresh": "^0.14.0",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"stylelint": "^15.4.0",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-standard": "^32.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-order": "^6.0.3",
"typescript": "^5.2.0-dev.20230627",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"dependencies": {
"@tanstack/router": "^0.0.1-beta.84",
"axios": "^1.4.0",
"core-js": "^3.30.0",
"country-list": "^2.3.0",
"dompurify": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}