This repository was archived by the owner on Jul 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.18 KB
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
{
"name": "ts-framework",
"version": "1.0.0-rc.1",
"description": "A minimalistic web framework for TS",
"author": "Luis Brito <luis@devnup.com>",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"prebuild": "rimraf ./dist",
"test": "jest --config jest.json",
"docs": "./scripts/docs.sh",
"predocs": "rimraf ./docs",
"release": "yarn run -s build && yarn run -s docs",
"coveralls": "((cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js) || true)",
"precommit": "yarn run -s lint && yarn test"
},
"engines": {
"node": "8"
},
"dependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.11.1",
"@types/winston": "^2.3.9",
"async": "^2.5.0",
"base64url": "^2.0.0",
"body-parser": "^1.18.2",
"clean-stack": "^1.3.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-oauth-server": "^2.0.0",
"express-useragent": "^1.0.8",
"git-rev-sync": "^1.9.1",
"hat": "^0.0.3",
"lodash": "^4.17.4",
"method-override": "^2.3.10",
"mongoose": "^4.12.1",
"multer": "^1.3.0",
"pjson": "^1.0.9",
"raven": "^2.2.1",
"request-ip": "^2.0.2",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"typescript": "^2.5.3",
"urijs": "^1.19.0",
"winston": "^2.4.0",
"winston-raven-sentry": "^1.0.1"
},
"devDependencies": {
"@types/async": "^2.0.49",
"@types/body-parser": "^1.16.5",
"@types/cookie-parser": "^1.4.1",
"@types/jest": "^21.1.2",
"@types/method-override": "^0.0.31",
"@types/mongoose": "^5.0.10",
"@types/raven": "^2.5.1",
"@types/supertest": "^2.0.3",
"coveralls": "^3.0.0",
"devnup-typedoc-theme": "git+https://gitlab.devnup.com/npm/devnup-typedoc-theme.git#master",
"husky": "^0.14.3",
"jest": "^21.2.1",
"mongodb-memory-server": "^1.6.1",
"nodemon": "^1.12.1",
"supertest": "^3.0.0",
"ts-jest": "^21.1.2",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typedoc": "^0.9.0"
}
}