-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "listing-people-api",
"version": "1.0.0",
"description": "Example to create a simple backend application with spiel-server",
"main": "lib/src/index.js",
"scripts": {
"test": "node_modules/lab/bin/lab -v --sourcemaps --transform node_modules/lab-transform-typescript test/people.test.ts",
"watch": "sh run.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spiel-examples/listing-people-api.git"
},
"keywords": [
"spieljs",
"spiel-server",
"nodejs",
"mongoose",
"api",
"typescript",
"webpack"
],
"author": "Francisco Jesus Navarro Cortes",
"license": "MIT",
"bugs": {
"url": "https://github.com/spiel-examples/listing-people-api/issues"
},
"homepage": "https://github.com/spiel-examples/listing-people-api#readme",
"dependencies": {
"spiel-server": "^1.0.0",
"ts-node": "^5.0.1",
"typegoose": "^4.0.1"
},
"devDependencies": {
"@types/code": "^4.0.4",
"code": "^5.2.0",
"lab": "^15.4.0",
"lab-transform-typescript": "^3.0.1",
"nodemon": "^1.17.1",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}