This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.69 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@ibis-app/ibis",
"version": "1.0.0",
"description": "Web version of IBIS (MedicineWorks)",
"scripts": {
"start": "lerna run --stream start --parallel",
"build": "lerna run --stream build",
"build:semantic": "lerna run --stream build:semantic",
"build:fast": "lerna run --stream build:fast",
"compress": "lerna run --stream compress",
"test": "lerna run --stream test --parallel",
"e2e": "lerna run --stream e2e",
"pkg": "lerna run --stream pkg",
"lint": "lerna run --stream lint --parallel",
"clean": "lerna run --stream clean --parallel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjspriggs/ibis.git"
},
"author": "ben@sprico.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/benjspriggs/ibis/issues"
},
"homepage": "https://github.com/benjspriggs/ibis#readme",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@types/browserify": "^12.0.36",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/express-handlebars": "0.0.32",
"@types/got": "^9.4.4",
"@types/graceful-fs": "^4.1.3",
"@types/gulp": "^4.0.6",
"@types/jquery": "^3.3.29",
"@types/js-beautify": "^1.8.0",
"@types/lodash": "^4.14.121",
"@types/lowdb": "^1.0.6",
"@types/node-fetch": "^2.3.3",
"@types/pify": "^3.0.2",
"@types/shelljs": "^0.8.2",
"@types/supertest": "^2.0.7",
"@types/write-file-atomic": "^2.1.1",
"ava": "^2.0.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"browserify": "^16.2.3",
"colors": "^1.3.3",
"common-shakeify": "^0.6.0",
"del": "^4.1.1",
"glob": "^7.1.3",
"gulp": "^4.0.0",
"gulp-better-rollup": "^4.0.1",
"gulp-changed": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-debug": "^4.0.0",
"gulp-newer": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"husky": "^2.2.0",
"lerna": "^3.14.1",
"pkg": "^4.4.0",
"request": "^2.88.0",
"rollup": "^1.15.6",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.0",
"supertest": "^4.0.2",
"terser": "^4.0.0",
"tslint": "^5.13.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.5"
},
"nodemonConfig": {
"delay": 1000,
"ignore": [
"api/db.json"
]
},
"dependencies": {
"@ibis-app/api": "file:packages/ibis-api",
"@ibis-app/app": "file:packages/ibis-app",
"@ibis-app/lib": "file:packages/ibis-lib"
}
}