-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 1.45 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
{
"name": "youtube-playlist-sorter",
"description": "Sort YouTube playlists",
"repository": {
"type": "git"
},
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint src/*.js src/*.jsx",
"build": "npm run build:bundle && npm run build:background && npm run copy-css",
"build:bundle": "browserify src/app.js --extension=.jsx -o extension/bundle.js -d -t [ babelify --presets [ es2015 react ] ]",
"build:background": "browserify src/background.js -o extension/background.js -t [ babelify --presets [ es2015 react ] ]",
"watch": "npm run watch:bundle & npm run watch:background",
"watch:bundle": "watchify src/app.js --extension=.jsx -o extension/bundle.js -d -t [ babelify --presets [ es2015 react ] ]",
"watch:background": "watchify src/background.js -o extension/background.js -t [ babelify --presets [ es2015 react ] ]",
"copy-css": "cp node_modules/bootstrap/dist/css/bootstrap*.min.css extension/styles"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.17.0",
"watchify": "^4.0.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"jquery": "^3.5.0",
"natural-orderby": "^2.0.3",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-circular-progressbar": "^1.0.0",
"react-dom": "^16.7.0"
}
}