-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "grooveboat",
"version": "1.0.0",
"description": "A decentralized turntable.fm clone",
"main": "src/js/electron.js",
"author": "Steve Gattuso <[email protected]>",
"license": "MIT",
"alias": {
"components": "./src/js/components",
"pages": "./src/js/pages",
"services": "./src/js/services",
"db": "./src/js/db.js",
"utils": "./src/js/utils"
},
"scripts": {
"start": "parcel ./src/index.html",
"build": "parcel build ./src/index.html",
"lint": "eslint --cache --ext .jsx --ext .js ./src/js"
},
"browserslist": [
"last 2 Chrome versions"
],
"devDependencies": {
"babel-eslint": "^10.0.2",
"concurrently": "^4.1.0",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-parcel": "^1.9.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.2",
"parcel": "^1.12.3",
"sass": "^1.21.0",
"typescript": "^3.5.1",
"wait-on": "^3.2.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"emoji-mart": "^2.11.1",
"fs-extra": "^8.0.1",
"howler": "2.0.15",
"immutable": "^4.0.0-rc.12",
"jsmediatags": "^3.8.1",
"jsonwebtoken": "^8.5.1",
"pouchdb-browser": "^7.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.5",
"react-redux": "^7.1.0-rc.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-sortable-hoc": "^1.9.1",
"react-transition-group": "1.x",
"readable-stream": "^3.4.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.3",
"remote": "^0.2.6",
"services": "^0.0.3",
"socket.io-client": "^2.2.0",
"uuid": "^3.3.2"
}
}