-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.09 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
{
"name": "NoMoTS",
"description": "A Node.js API boilerplate connected to MongoDB and implemented in Typescript. ",
"version": "0.1.0",
"author": "maninak",
"homepage": "https://github.com/maninak/NoMoTS",
"private": true,
"scripts": {
"postinstall": "scripts/postinstall.sh",
"localmongo": "mkdir -p mongo-test && mongod --dbpath mongo-test --port 37017",
"start": "node dist/src/server.js",
"demon": "gulp demon",
"watch": "gulp watch",
"build": "gulp build",
"build:dev": "gulp build-dev",
"test": "gulp test",
"release": "scripts/release.sh",
"clean": "gulp clean",
"clean:node": "gulp clean-node",
"clean:purge": "git clean -fdx"
},
"dependencies": {
"body-parser": "~1.15.2",
"compression": "~1.6.2",
"debug": "~2.6.0",
"dotenv": "~2.0.0",
"errorhandler": "~1.5.0",
"express": "~4.14.0",
"gulp-shell": "~0.6.3",
"mongoose": "~4.7.4",
"morgan": "~1.7.0"
},
"devDependencies": {
"@types/body-parser": "~0.0.33",
"@types/chai": "~3.4.34",
"@types/chai-as-promised": "~0.0.29",
"@types/chai-http": "~0.0.29",
"@types/debug": "~0.0.29",
"@types/dotenv": "~2.0.19",
"@types/errorhandler": "~0.0.30",
"@types/express": "~4.0.34",
"@types/mocha": "~2.2.34",
"@types/mongodb": "~2.1.36",
"@types/mongoose": "~4.7.2",
"@types/morgan": "~1.7.32",
"@types/node": "~6.0.54",
"angular-precommit": "~1.0.3",
"chai": "~3.4.0",
"chai-as-promised": "~6.0.0",
"chai-http": "~3.0.0",
"gulp": "~3.9.1",
"gulp-clean": "~0.3.2",
"gulp-copy": "~1.0.0",
"gulp-env": "~0.4.0",
"gulp-mocha": "~3.0.1",
"gulp-nodemon": "~2.2.1",
"gulp-sourcemaps": "~2.6.0",
"gulp-tslint": "~7.0.1",
"gulp-typescript": "~3.1.3",
"gulp-watch": "~4.3.11",
"mocha": "~3.2.0",
"mocha-typescript": "~1.0.15",
"standard-version": "~4.0.0",
"tslint": "~4.2.0",
"tslint-eslint-rules": "~3.2.0",
"typescript": "~2.1.4"
},
"keywords": [
"NoMoTS",
"api",
"node",
"mongodb",
"mongoose",
"typescript",
"maninak"
]
}