This repository has been archived by the owner on Feb 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.34 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
{
"name": "feathers-typescript-starter",
"description": "A feathersjs starter app. Built using feathersjs, typescript and swagger for hackathons",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers",
"typescript",
"swagger"
],
"license": "MIT",
"author": {
"name": "Thilak Rao",
"email": "me@thilak.in",
"url": "thilak.in"
},
"repository": {
"type": "git",
"url": "git@github.com:xthilakx/feathers-typescript-starter.git"
},
"contributors": [],
"bugs": {
"url": "https://github.com/xthilakx/feathers-typescript-starter/issues"
},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^8.9.4",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run eslint && yarn run mocha",
"tslint": "./node_modules/tslint/bin/tslint -c tslint.json 'src/**/*.ts' 'test/*.ts' 'test/**/*.ts'",
"start": "yarn build-react && yarn run serve",
"build-react": "cd react && yarn build",
"serve": "./node_modules/nodemon/bin/nodemon.js --watch \"src/**/*.ts\" --ignore \"test/**/*.test.ts\" --exec \"./node_modules/ts-node/dist/bin.js\" src/index.ts",
"mocha": "./node_modules/mocha/bin/mocha -r ts-node/register test/*.ts test/**/*.ts --recursive --exit"
},
"dependencies": {
"@feathersjs/configuration": "1.0.2",
"@feathersjs/errors": "3.3.0",
"@feathersjs/express": "1.2.0",
"@feathersjs/feathers": "3.1.3",
"@feathersjs/socketio": "3.2.0",
"@types/mocha": "^2.2.48",
"compression": "1.7.2",
"cors": "2.8.4",
"express-validator": "5.1.0",
"helmet": "3.11.0",
"is-url": "^1.2.4",
"serve-favicon": "2.4.5",
"sitemapper": "2.1.13",
"url-parse": "1.2.0",
"winston": "2.4.0"
},
"devDependencies": {
"@types/compression": "0.0.35",
"@types/cors": "2.8.3",
"@types/feathersjs__configuration": "1.0.0",
"@types/feathersjs__errors": "3.2.0",
"@types/feathersjs__express": "1.1.2",
"@types/feathersjs__feathers": "3.0.0",
"@types/feathersjs__socketio": "3.0.1",
"@types/helmet": "0.0.37",
"@types/node": "9.4.6",
"@types/serve-favicon": "2.2.30",
"@types/winston": "2.3.8",
"mocha": "5.0.1",
"nodemon": "1.15.1",
"request": "2.83.0",
"request-promise": "4.2.2",
"ts-node": "5.0.0",
"tslint": "5.9.1",
"typescript": "2.7.2"
}
}