-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "ToDo",
"version": "0.1.0",
"description": "RxStack Skeleton - a fully functional application that you can use as the skeleton for your new applications.",
"private": true,
"author": "Nikolay Georgiev <symfonist@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rxstack/skeleton.git"
},
"engines": {
"node": ">=8"
},
"keywords": [
"rxstack"
],
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"prod": "cross-env NODE_ENV=production node npm install && npm run clean && npm run compile && ./dist/index.js",
"dev": "cross-env NODE_ENV=development npm run compile && nodemon && npm run watch",
"cli": "npm run compile && cross-env RXSTACK_CLI=true node ./dist/index.js",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "del-cli ./dist",
"lint": "tslint --project tsconfig.json --format stylish",
"mocha": "cross-env NODE_ENV=testing mocha --opts mocha.opts",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run coverage"
},
"dependencies": {
"@rxstack/async-event-dispatcher": "^0.1",
"@rxstack/configuration": "^0.1.3",
"@rxstack/core": "^0.1",
"@rxstack/data-fixtures": "^0.1.1",
"@rxstack/exceptions": "^0.1.3",
"@rxstack/express-server": "^0.1",
"@rxstack/memory-service": "^0.1.7",
"@rxstack/mongoose-service": "^0.1.4",
"@rxstack/platform": "^0.1.8",
"@rxstack/platform-callbacks": "^0.1.2",
"@rxstack/query-filter": "^0.1.2",
"@rxstack/security": "^0.1.5",
"@rxstack/socketio-server": "^0.1",
"@types/express": "^4.16.1",
"chalk": "^2.4.2",
"class-validator": "^0.9.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"injection-js": "^2.1.0",
"mysql2": "^1.6.5",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.120",
"@types/mocha": "^2.2.48",
"@types/node": "^7.10.3",
"@types/serve-static": "^1.7",
"@types/sinon": "^5.0.7",
"chai": "3.5.0",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"istanbul": "0.4.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"nyc": "^11.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"should": "^13.2.3",
"sinon": "^6.3.5",
"socket.io-client": "^2.2.0",
"source-map-support": "^0.4.15",
"ts-node": "^3.1.0",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"bugs": {
"url": "https://github.com/rxstack/skeleton/issues"
},
"homepage": "https://github.com/rxstack/skeleton",
"nodemonConfig": {
"ignore": [
"test/*"
],
"delay": "1000"
},
"nyc": {
"include": [
"./src/**/*.ts"
],
"exclude": [
"./test/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}