forked from toptal/haste-server
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
40 lines (40 loc) · 957 Bytes
/
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
{
"name": "haste",
"version": "0.2.5",
"description": "Private Pastebin Server - continued by zneix",
"keywords": [
"paste",
"pastebin",
"haste",
"hastebin"
],
"author": {
"name": "John Crepezzi",
"email": "[email protected]",
"url": "http://seejohncode.com/"
},
"main": "server.js",
"dependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"babel-plugin-minify-mangle-names": "^0.5.0",
"busboy": "^0.3.1",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"ioredis": "^4.27.2",
"mongodb": "^3.6.6",
"pg": "^8.6.0",
"st": "^2.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.26.0",
"mocha": "^8.4.0"
},
"scripts": {
"build": "npm install && npx babel --plugins minify-mangle-names --no-comments --minified static/application.js --out-file static/application.min.js",
"start": "node server.js",
"test": "mocha --recursive",
"testformat": "npx eslint ./"
}
}