-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 2.08 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
{
"name": "typescript-express-starter",
"version": "0.1.0",
"description": "A starting point for Node.js express apps with TypeScript",
"main": "src/server.js",
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Express\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"serve": "cross-env DEBUG=ts-express:* nodemon bin/www",
"build-ts": "tsc -p src",
"watch-ts": "tsc -w -p src",
"tslint": "tslint -c tslint.json -p src/tsconfig.json",
"test": "cross-env NODE_ENV=test TS_NODE_PROJECT=test mocha --reporter spec --compilers ts:ts-node/register -r tsconfig-paths/register test/unit/**/*.test.ts",
"migrate": "knex migrate:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gongzza/TypeScript-Express-Starter.git"
},
"keywords": [
"typescript",
"express"
],
"author": "gongzza <gz.us.to@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gongzza/TypeScript-Express-Starter/issues"
},
"dependencies": {
"body-parser": "^1.18.1",
"bookshelf": "^0.10.4",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"knex": "^0.13.0",
"lusca": "^1.5.1",
"morgan": "^1.8.2",
"mysql2": "^1.4.2",
"validatorjs": "^3.13.5"
},
"devDependencies": {
"@types/body-parser": "^1.16.5",
"@types/bookshelf": "^0.9.6",
"@types/chai": "^4.0.4",
"@types/dotenv": "^4.0.1",
"@types/express": "^4.0.37",
"@types/knex": "0.0.61",
"@types/mocha": "^2.2.43",
"@types/morgan": "^1.7.32",
"@types/node": "^8.0.28",
"@types/supertest": "^2.0.3",
"@types/validatorjs": "^3.7.0",
"chai": "^4.1.2",
"concurrently": "^3.5.0",
"cross-env": "^5.0.5",
"debug": "^3.0.1",
"mocha": "^3.5.3",
"mock-knex": "^0.3.9",
"nodemon": "^1.12.1",
"supertest": "^3.0.0",
"ts-node": "^3.3.0",
"tsconfig-paths": "^2.3.0",
"tslint": "^5.7.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.5.2"
}
}