-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "dinoloop-inversify-starter",
"version": "1.0.0",
"private": true,
"description": "Dinoloop starter featuring Typescript, Express, Inversify, Moq.ts, Jasmine with TDD",
"homepage": "https://github.com/ParallelTask/dinoloop-inversify-starter",
"author": "Dinoloop Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ParallelTask/dinoloop-iversify-starter.git"
},
"scripts": {
"build": "rimraf dist && tsc --p ./tsconfig.app.json",
"start": "npm run build && node dist/app.js",
"test": "jasmine-ts JASMINE_CONFIG_PATH=spec/support/jasmine.json"
},
"dependencies": {
"body-parser": "~1.18.2",
"dinoloop": "~2.3.0",
"express": "~4.16.3",
"inversify": "~4.13.0",
"source-map-support": "~0.5.10"
},
"devDependencies": {
"@types/express": "~4.11.1",
"@types/jasmine": "~3.3.9",
"@types/node": "^7.0.22",
"jasmine-spec-reporter": "~4.2.1",
"jasmine-ts": "~0.2.1",
"moq.ts": "~2.6.1",
"rimraf": "~2.5.2",
"typescript": "~2.8.1"
},
"engines": {
"node": ">= 8.10.x",
"npm": ">= 5.6.0"
}
}