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
/
Copy pathpackage.json
65 lines (65 loc) · 1.96 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
{
"name": "steroids-template",
"version": "1.7.2",
"description": "Framework for building Node.js servers with Express on steroids!",
"main": "src/main.ts",
"scripts": {
"build": "node pre-build.js && ./node_modules/typescript/bin/tsc --build && node post-build.js",
"launch": "node dist/@steroids/main.js",
"start": "node pre-build.js && ./node_modules/typescript/bin/tsc --build && node post-build.js && node dist/@steroids/main.js",
"docs": "./node_modules/typedoc/bin/typedoc --out docs/dev src",
"test": "node pre-test.js && ./node_modules/typescript/bin/tsc -p test/tsconfig.json && ./node_modules/mocha/bin/mocha ./test/dist/main.spec.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chisel/steroids-template.git"
},
"keywords": [
"typescript",
"server",
"node js",
"template",
"infrastructure",
"framework",
"validation",
"scalable",
"fast",
"development"
],
"author": "Ramtin Soltani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chisel/steroids-template/issues"
},
"homepage": "https://github.com/chisel/steroids-template#readme",
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chalk": "^3.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"lodash": "^4.17.19",
"luxon": "^1.21.3",
"source-map-support": "^0.5.19",
"strip-ansi": "^6.0.0",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.7",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/lodash": "^4.14.149",
"@types/luxon": "^1.21.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.16",
"mocha": "^8.1.1",
"typedoc": "^0.15.4",
"typescript": "^3.7.3",
"uglify-es": "^3.3.9"
}
}