-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.95 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "rogue-sound-web",
"version": "0.0.3",
"description": "Rogue Sound is a social music sharing website where you can play music with friends and listen to it in real time thanks to the Spotify API.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/rogue-sound/poc-rogue-sound-web.git"
},
"keywords": [
"spotify",
"music",
"share",
"playlist",
"social",
"react",
"webpack"
],
"author": "Everfriends",
"license": "ISC",
"scripts": {
"build:dev": "webpack -d --mode development",
"build:prod": "webpack -p --mode production",
"clean": "rm dist/bundle.js",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"prettify": "prettier --write \"src/**/*.js\"",
"start": "webpack-dev-server --hot --mode development",
"storybook": "start-storybook",
"build:i18n": "cross-env NODE_ENV=development extract-messages -l=en,es -o src/i18n -d en --flat true 'src/**/*.js'"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@reduxjs/toolkit": "^1.5.0",
"axios": "^0.21.1",
"dayjs": "^1.10.3",
"immer": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.14.2",
"react-hot-loader": "^4.13.0",
"react-intl": "^4.7.6",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"reselect": "^4.0.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "latest",
"@babel/preset-react": "^7.12.10",
"@hot-loader/react-dom": "latest",
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^2.7.1",
"babel-plugin-named-asset-import": "^0.3.7",
"babel-plugin-styled-components": "^1.12.0",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^5.1.2",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^2.5.1",
"extract-react-intl-messages": "^4.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"husky": "^4.3.8",
"node-sass": "^4.14.1",
"prettier": "^1.19.1",
"sass-loader": "^8.0.0",
"style-loader": "^1.3.0",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}