-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.1 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
{
"name": "nipper",
"version": "2.0.0-alpha",
"description": "🌶 💽 Nipper - YouTube playlist (& video) ripper",
"scripts": {
"dev": "webpack-dev-server --progress --hot --config webpack.dev.js",
"proxy": "node index.js",
"doc": "npx docz dev",
"doc:build": "npx docz build",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "npx eslint --fix 'src/**/*.js'",
"test:unit": "npx jest",
"test:e2e": "npx cypress open",
"build": "npx webpack --progress --config webpack.prod.js",
"start": "NODE_ENV=production node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thcolin/nipper.git"
},
"author": "thcolin",
"license": "ISC",
"bugs": {
"url": "https://github.com/thcolin/nipper/issues"
},
"homepage": "https://github.com/thcolin/nipper#readme",
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"jest": {
"rootDir": "src",
"setupFiles": [
"../jest.setup.js"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"atob": "^2.1.2",
"browser-id3-writer": "^4.1.0",
"cors": "^2.8.4",
"express": "^4.16.4",
"ffmpeg.js": "github:thcolin/ffmpeg.js#v3.1.9006",
"get-artist-title": "^1.1.1",
"glamor": "^2.20.40",
"jszip": "^3.1.5",
"load-js": "^3.0.3",
"marksy": "^6.1.0",
"pouchdb-adapter-idb": "^7.0.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-powerplug": "^1.0.0-rc.1",
"react-redux": "^5.0.7",
"react-rellax": "^1.0.2",
"react-virtualist": "^1.0.6",
"redux": "^4.0.1",
"redux-observable": "^1.0.0",
"rxdb": "^8.0.2",
"rxjs": "^6.3.3",
"save-as": "^0.1.8",
"sha.js": "^2.4.11",
"smoothscroll-polyfill": "^0.4.3",
"typeface-open-sans": "0.0.54",
"typeface-titillium-web": "0.0.54",
"uuid": "^3.3.2",
"xhook": "^1.4.9"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"chalk": "^2.4.1",
"css-loader": "^1.0.0",
"cypress": "^3.1.0",
"docz": "^0.12.5",
"dotenv": "^6.1.0",
"dotenv-webpack": "^1.5.7",
"electroshot": "^1.4.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"favicons-webpack-plugin": "0.0.9",
"googleapis": "^34.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"react-color": "^2.14.1",
"react-hot-loader": "^4.3.11",
"style-loader": "^0.23.1",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-electroshot-plugin": "0.0.2",
"webpack-merge": "^4.1.4",
"worker-loader": "^2.0.0",
"xhr-mock": "^2.4.1"
}
}