-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·78 lines (78 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "example-app",
"version": "1.6.0",
"description": "A new Fabrix application",
"homepage": "https://fabrix.app",
"author": {
"name": "scott-wyatt",
"email": "[email protected]",
"url": "https://cali-style.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fabrix-app/example-app/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabrix-app/example-app.git"
},
"keywords": [
"example",
"fabrix",
"fabrix-app"
],
"scripts": {
"build": "tsc -p ./src/tsconfig.release.json",
"lint": "tslint -p ./src",
"watch": "tsc -w -p ./src/tsconfig.release.json",
"test": "npm run clean && npm run lint && npm run build && nyc mocha",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && npm run build",
"clean": "rm -rf dist",
"ci": "cd .. && ci",
"start": "npm run compile && node dist/server"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"pre-commit": [
"test"
],
"dependencies": {
"@fabrix/fabrix": "^1.6.4",
"@fabrix/lint": "^1.0.0-alpha.3",
"@fabrix/spool-errors": "^1.6.1",
"@fabrix/spool-hapi": "^1.6.1",
"@fabrix/spool-i18n": "^1.6.0",
"@fabrix/spool-repl": "^1.5.0",
"@fabrix/spool-router": "^1.6.4",
"@fabrix/spool-sequelize": "^1.6.17",
"@fabrix/spool-winston": "^1.6.0",
"lodash": "^4.17.11",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/node": "~10.3.4",
"mocha": "^6",
"nyc": "^14.1.1",
"pg": "^6.4.2",
"smokesignals": "^2.0.0",
"sqlite3": "^4.0.9",
"source-map-support": "^0.5.13",
"supertest": "^3.3.0",
"tslib": "~1.9.0",
"tslint": "~5.14.0",
"tslint-microsoft-contrib": "~6.1.0",
"tsutils": "~3.9.1",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^1.2.0",
"typescript": "~3.3.4000",
"typescript-closure-compiler": "^1.8.11"
},
"engines": {
"node": ">= 7.6.0",
"npm": ">= 3.10.0"
}
}