This repository was archived by the owner on Oct 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 KB
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
{
"name": "vizality-paste",
"version": "0.1.5",
"description": "A web app for quickly and easily sharing documents and code snippets.",
"author": {
"name": "dperolio",
"email": "contact@vizality.com",
"url": "https://dperolio.com"
},
"private": true,
"keywords": [
"haste",
"hastebin",
"paste",
"pastebin"
],
"dependencies": {
"busboy": "0.2.4",
"concurrently": "^5.3.0",
"connect": "^3.7.0",
"connect-ratelimit": "0.0.7",
"connect-route": "0.1.5",
"pg": "^8.7.1",
"redis": "0.8.1",
"redis-url": "0.1.0",
"st": "^2.0.0",
"winston": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.6",
"sass": "^1.27.0",
"terser": "^5.9.0"
},
"bundledDependencies": [],
"bin": {
"haste-server": "./server.js"
},
"files": [
"server.js",
"lib",
"src"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "node server.js",
"dev": "concurrently \"npm run watch-sass\" \"npm run watch-js\" \"node server.js\"",
"watch-js": "nodemon --watch src --exec \"npm run minify\"",
"watch-sass": "sass --watch --style=compressed src/styles/main.scss dist/css/main.min.css",
"minify": "terser src/js/nouislider.js src/js/canvas.js src/js/application.js src/js/highlight.js src/js/materialize.js\\ -o dist/js/main.min.js -c --source-map",
"test": "mocha --recursive"
}
}