-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
160 lines (160 loc) · 4.94 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "Playa",
"version": "0.4.2",
"description": "The player that thinks in albums.",
"main": "./_pack/main.bundle.js",
"repository": "https://github.com/moonwave99/playa",
"homepage": "https://moonwave99.github.io/playa",
"author": {
"name": "Diego Caponera",
"email": "hello@diegocaponera.com",
"url": "https://www.diegocaponera.com"
},
"license": "MIT",
"private": false,
"build": {
"files": [
"_pack",
"locales",
"settings",
"node_modules"
]
},
"scripts": {
"start": "electron ./_pack/main.bundle.js",
"development": "rimraf _pack && webpack --watch --config ./webpack.dev.js --progress --colors",
"pouchdb": "pouchdb-server -p 5984 -d ./.pouchdb",
"production": "rimraf _pack && webpack --config ./webpack.prod.js --progress --colors",
"pack": "yarn run production && rimraf dist && electron-builder -c.mac.identity=null",
"clean": "rimraf build && rimraf _pack && rimraf dist",
"lint": "yarn eslint ./src --ext .js,.jsx,.ts,.tsx",
"test": "jest --config jest.config.js",
"test:e2e": "jest --runInBand --config jest.config.e2e.js",
"db:scripts": "TS_NODE_FILES=true ts-node --project ./tsconfig.scripts.json ./scripts/db.ts"
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/electron-devtools-installer": "^2.2.0",
"@types/electron-settings": "^3.1.1",
"@types/electron-util": "^0.11.1",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/history": "^4.7.3",
"@types/jest": "^24.0.24",
"@types/lodash": "^4.14.149",
"@types/mock-fs": "^4.10.0",
"@types/mousetrap": "^1.6.3",
"@types/nanoid": "^2.1.0",
"@types/node": "^13.9.8",
"@types/pouchdb": "^6.4.0",
"@types/pouchdb-find": "^6.3.5",
"@types/react": "^16.9.16",
"@types/react-autosuggest": "^9.3.13",
"@types/react-dom": "^16.9.4",
"@types/react-modal": "^3.10.4",
"@types/react-redux": "^7.1.5",
"@types/react-router": "^5.1.3",
"@types/react-router-dom": "^5.1.3",
"@types/react-slick": "^0.23.4",
"@types/react-table": "^7.0.3",
"@types/react-transition-group": "^4.2.3",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.1",
"@types/redux-logger": "^3.0.7",
"@types/redux-mock-store": "^1.0.1",
"@types/webfontloader": "^1.6.29",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"browser-id3-writer": "^4.4.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"devtron": "^1.4.0",
"electron": "^9.0.2",
"electron-builder": "^22.7.0",
"electron-devtools-installer": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^3.0.1",
"mock-fs": "https://github.com/tschaub/mock-fs#master",
"native-ext-loader": "^2.3.0",
"node-sass": "^4.13.0",
"react-dnd-test-backend": "^10.0.2",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"spectron": "^11.0.0",
"spectron-menu-addon": "^0.4.1",
"style-loader": "^1.1.1",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"yargs": "^15.3.0"
},
"dependencies": {
"@csstools/normalize.css": "^10.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"chalk": "^3.0.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.6.1",
"date-fns": "^2.12.0",
"disconnect": "^1.2.1",
"final-form": "^4.18.7",
"fs-extra": "^8.1.0",
"globby": "^11.0.0",
"history": "^4.10.1",
"i18next": "^19.0.3",
"jimp": "^0.10.0",
"lodash": "^4.17.15",
"memoize-one": "^5.1.1",
"mousetrap": "^1.6.5",
"music-metadata": "^6.1.1",
"nanoid": "^3.0.2",
"node-vibrant": "^3.1.5",
"pouchdb": "^7.2.1",
"pouchdb-find": "^7.2.1",
"pouchdb-quick-search": "^1.3.0",
"re-reselect": "^3.4.0",
"react": "^16.12.0",
"react-autosuggest": "^10.0.0",
"react-delta": "^1.0.2",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.12.0",
"react-final-form": "^6.3.5",
"react-i18next": "^11.3.1",
"react-intersection-observer": "^8.25.2",
"react-modal": "^3.11.1",
"react-popper-tooltip": "^2.11.1",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-slick": "^0.26.1",
"react-table": "^7.0.0-rc.15",
"react-transition-group": "^4.3.0",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"sha1": "^1.1.1",
"slick-carousel": "^1.8.1",
"typed-error": "^3.2.0",
"webfontloader": "^1.6.28"
}
}