-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.04 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
{
"name": "soundcut",
"version": "1.0.0",
"description": "Extract sound memes in the browser",
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"dev": "npm-run-all -s build:clean build:views build:client; npm-run-all -p watch:*",
"prettier": "prettier --write --trailing-comma es5 --single-quote --print-width 80 'shared/**/*.js' 'client/**/*.js' 'server/**/*.js' 'lib/**/*.js' 'webpack.config*.js' && npm run lint -- --fix",
"lint": "eslint 'shared/**/*.js' 'server/**/*.js' 'client/**/*.js' 'lib/**/*.js'",
"build": "NODE_ENV=production npm-run-all -s build:*",
"build:clean": "rm -rf dist;",
"build:views": "./bin/generate-views.sh",
"build:client": "webpack --config webpack.config.js",
"build:sw": "webpack --config webpack.config.sw.js",
"watch:views": "chokidar 'shared/templates/*' -c 'npm run build:views'",
"watch:client": "npm run build:client -- --watch",
"watch:server": "nodemon --watch dist --watch server --watch shared/views server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "echo \"Error: no release script specified\" && exit 1",
"size": "size-limit",
"postinstall": "[ -z \"$VHOST\" ] && exit 0; npm run build",
"deploy": "ssh $SOUNDSLICE_DEPLOY deploy default.git"
},
"size-limit": [
{
"path": "dist/js/app.*.js",
"limit": "120 KB",
"gzip": false
}
],
"author": {
"name": "Timothée 'Tim' Pillard",
"email": "[email protected]",
"url": "https://twitter.com/tpillard"
},
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/soundcut/app.git"
},
"keywords": [
"sound",
"cut",
"audio",
"mp3",
"file",
"slice",
"meme",
"progressive",
"web",
"app",
"pwa"
],
"bugs": {
"url": "https://github.com/soundcut/app/issues"
},
"config": {
"NODE_ENV": "development"
},
"dependencies": {
"@soundcut/decode-audio-data-fast": "^2.0.1",
"browser-id3-writer": "^4.1.0",
"express": "^4.16.3",
"glob": "^7.1.3",
"hyperhtml-app": "^1.0.1",
"hypermorphic": "^0.9.0",
"js-yaml": "^3.13.0",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"mp3-parser": "^0.3.0",
"multiparty": "^4.1.4",
"pg": "^7.9.0",
"punycode": "1.4.1",
"serve-favicon": "^2.5.0",
"serve-static": "^1.13.2"
},
"devDependencies": {
"@size-limit/file": "^4.5.7",
"chokidar-cli": "^1.2.2",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"file-loader": "^3.0.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.14.2",
"prettier-plugin-html-template-literals": "^1.0.5",
"sass-loader": "^7.1.0",
"size-limit": "^4.5.7",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-manifest-plugin": "^2.0.4"
}
}