-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.36 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
{
"name": "@irontitan/next",
"version": "2.3.2",
"description": "File template and cli helper for files using irontitan architecture",
"main": "dist/index.js",
"keywords": [
"cli",
"architecture",
"boilerplate",
"irontitan",
"mvc",
"event sourcing"
],
"bin": {
"next": "dist/index.js"
},
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"build:watch": "tsc -w",
"lint": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/irontitan/next.git"
},
"contributors": [
"Lucas Santos <hello@lsantos.dev>"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/irontitan/next/issues"
},
"homepage": "https://github.com/irontitan/next#readme",
"files": [
"dist",
"templates"
],
"devDependencies": {
"@types/ejs": "^2.6.1",
"@types/execa": "^0.9.0",
"@types/glob": "^7.1.1",
"@types/node": "^10.12.21",
"@types/ora": "^3.0.0",
"@types/pluralize": "^0.0.29",
"standard": "^12.0.1",
"tslint": "^5.12.1",
"typescript": "^3.3.1"
},
"dependencies": {
"caporal": "^1.1.0",
"chalk": "^2.4.2",
"change-case": "^3.1.0",
"ejs": "^3.1.7",
"enquirer": "^2.3.0",
"execa": "^1.0.0",
"glob": "^7.1.3",
"ora": "^3.0.0",
"pluralize": "^7.0.0"
}
}