This repository has been archived by the owner on Feb 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "@chisel/steroids",
"version": "2.0.0",
"description": "Framework for building Node.js servers with Express on steroids!",
"main": "./bin/sd.js",
"bin": {
"sd": "./bin/sd.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./node_modules/typescript/bin/tsc --build",
"fetch-template": "echo \"Fetching Steroids template...\" && rm -f ./template.tar.gz && rm -rf ./template && git clone [email protected]:chisel/steroids-template.git ./template && cd ./template && rm -r .git && rm README.md && cd .. && node ./pack-template.js && rm -rf ./template"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chisel/steroids.git"
},
"keywords": [
"node.js",
"express",
"typescript",
"server",
"steroids",
"fast",
"development"
],
"author": "Ramtin Soltani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chisel/steroids/issues"
},
"homepage": "https://github.com/chisel/steroids#readme",
"dependencies": {
"argumental": "^1.0.8",
"chalk": "^3.0.0",
"chokidar": "^3.3.0",
"finalhandler": "^1.1.2",
"fs-extra": "^8.1.0",
"mustache": "^3.1.0",
"serve-static": "^1.14.1",
"tar": "^6.0.2",
"typescript": "^3.7.3",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@types/finalhandler": "^1.1.0",
"@types/fs-extra": "^8.0.1",
"@types/mustache": "^0.8.32",
"@types/serve-static": "^1.13.3",
"@types/tar": "^4.0.3",
"@types/validate-npm-package-name": "^3.0.0"
}
}