-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.82 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.82 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
{
"name": "news-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run watch",
"build": "rm -rf dist/* && npm run build-ts",
"serve": "node dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"nodemon dist/index.js\"",
"test": "mocha --reporter spec --compilers ts:ts-node/register 'src/test/**/*.test.ts'",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://therealtp@bitbucket.org/therealtp/news-api.git"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/therealtp/news-api#readme",
"devDependencies": {
"@types/body-parser": "^1.16.3",
"@types/chai": "^4.0.4",
"@types/chai-http": "^3.0.3",
"@types/dotenv": "^4.0.0",
"@types/express": "^4.0.35",
"@types/humps": "^1.1.2",
"@types/lodash": "^4.14.65",
"@types/loggly": "^1.1.30",
"@types/mocha": "^2.2.43",
"@types/node": "^7.0.22",
"@types/pg": "^6.1.41",
"@types/sequelize": "^4.0.59",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"concurrently": "^3.4.0",
"mocha": "^3.5.3",
"mocha-typescript": "^1.1.8",
"nodemon": "^1.11.0",
"ts-node": "^3.3.0",
"tslint": "^5.3.2",
"typescript": "^2.4.1"
},
"dependencies": {
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-query-boolean": "^1.0.0",
"express-validator": "^4.2.1",
"humps": "^2.0.1",
"lodash": "^4.17.4",
"loggly": "^1.1.1",
"moment": "^2.18.1",
"morgan": "^1.8.2",
"pg": "^6.2.3",
"pogi": "^2.2.3",
"sequelize": "^3.30.4",
"uuid": "^3.1.0"
}
}