-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
57
58
{
"name": "buzzy",
"version": "1.0.12",
"description": "A modular web server for rapid full-stack development.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"tsc": "tsc",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./dev/index.ts",
"test": "jest",
"prod": "tsc && node ./dist/index.js"
},
"author": "[mpg] Marian P. Gajda",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.11",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.4",
"@types/jest": "^25.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.1",
"chai": "^4.2.0",
"jest": "^25.2.4",
"mocha": "^7.1.1",
"ts-jest": "^25.3.0",
"ts-node-dev": "^1.0.0-pre.44"
},
"dependencies": {
"axios": "^0.19.2",
"colors": "^1.4.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"handlebars": "^4.7.3",
"promised-handlebars": "^2.0.1",
"sql-string-escape": "^1.1.6",
"sql.js": "^1.2.2",
"typescript": "^3.8.3",
"url": "^0.11.0",
"uuid": "^7.0.2",
"yaml": "^1.9.2"
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marianpg/buzzy.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/marianpg/buzzy/issues"
},
"homepage": "https://github.com/marianpg/buzzy#readme"
}