-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 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
{
"name": "spotify-react",
"version": "1.0.2",
"private": false,
"description": "An application example connected to the Spotify Web API, allowing searches in the music catalog of Spotify.",
"author": "franlopezm",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/franlopezm/spotify-react.git"
},
"bugs": {
"url": "https://github.com/franlopezm/spotify-react/issues"
},
"homepage": "https://franlopezm-spotify.surge.sh",
"keywords": [
"node",
"react",
"spotify"
],
"dependencies": {
"axios": "^0.21.1",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"node-sass-chokidar": "^1.5.0",
"react-scripts": "4.0.3"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "react-scripts start",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "./deploy.bash"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}