-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.16 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
79
80
81
82
{
"name": "sorta",
"version": "0.0.1",
"description": "Web application for sorting your Spotify playlists using custom sort rules",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/alexesprit/sorta"
},
"scripts": {
"start": "webpack-dev-server",
"lint": "eslint . && stylelint **/*.{js,ts,tsx}",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"build": "webpack",
"prod": "cross-env NODE_ENV=production webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap-icons": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"spotify-web-api-js": "^1.5.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.2",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-web-scrobbler": "^1.1.0",
"eslint-plugin-react": "^7.20.6",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.0.5",
"prettier-config-web-scrobbler": "^0.1.0",
"stylelint": "^13.7.0",
"stylelint-config-web-scrobbler": "^0.2.0",
"stylelint-processor-styled-components": "^1.10.0",
"svg-sprite-loader": "^5.0.0",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.0.2",
"typescript-plugin-css-modules": "^2.4.0",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"eslintConfig": {
"extends": [
"web-scrobbler/typescript",
"plugin:react/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"plugins": [
"react"
],
"settings": {
"react": {
"version": "detect"
}
}
},
"prettier": "prettier-config-web-scrobbler",
"stylelint": {
"processors": [
"stylelint-processor-styled-components"
],
"extends": "stylelint-config-web-scrobbler"
}
}