-
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.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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": "leanmood-backend",
"version": "1.0.0",
"description": "LeanMood backend",
"main": "public/app.js",
"scripts": {
"postinstall": "npm run build",
"start": "nf start",
"start:dev": "gulp build && gulp dev",
"start:prod": "node public/app.js",
"build": "gulp build",
"test": "npm run build && gulp test",
"test:watch": "npm run build && gulp test:watch",
"lint": "./node_modules/.bin/tslint -c ./tslint.json --force src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MasterLemon2016/LeanMoodBackend.git"
},
"keywords": [
"LeanMood",
"Online",
"Training"
],
"author": "Lemoncode",
"license": "MIT",
"bugs": {
"url": "https://github.com/MasterLemon2016/LeanMoodBackend/issues"
},
"homepage": "https://github.com/MasterLemon2016/LeanMoodBackend#readme",
"devDependencies": {
"@types/body-parser": "^1.16.3",
"@types/chai": "^4.0.0",
"@types/cookie-parser": "^1.3.30",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.36",
"@types/mocha": "^2.2.41",
"@types/mongodb": "^2.2.7",
"@types/mongoose": "^4.7.18",
"@types/sinon": "^1.16.36",
"chai": "^4.0.2",
"foreman": "^2.0.0",
"gulp": "^3.9.1",
"gulp-mocha": "^4.3.1",
"gulp-nodemon": "^2.2.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "7.1.0",
"gulp-typescript": "^3.1.7",
"if-env": "^1.0.0",
"rimraf": "^2.6.1",
"sinon": "^1.17.7",
"tslint": "^4.5.1",
"typescript": "^2.3.4"
},
"dependencies": {
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"express": "^4.15.3",
"mongoose": "^4.11.1",
"security": "file:./security"
}
}