This repository was archived by the owner on Aug 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 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
64
{
"name": "space",
"version": "0.0.1",
"license": "MIT",
"author": "Knives214",
"private": true,
"repository": {
"type": "git",
"url": "git+https://gitlab.com/knives214/space.git"
},
"homepage": "https://gitlab.com/knives214/space#README",
"bugs": {
"url": "https://gitlab.com/knives214/space/issues"
},
"scripts": {
"ng": "ng",
"up": "ng build",
"start": "SET NODE_ENV=dev && node server.js",
"lint": "tslint \"src/**/*.ts\"",
"test": "mocha spec/routes spec/models",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "protractor",
"serve": "node ./bin/www",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./index.ts"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"core-js": "^2.4.1",
"debug": "~2.2.0",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"express-session": "^1.14.2",
"express-validator": "^3.1.1",
"jsonwebtoken": "^7.2.1",
"mongodb": "^2.2.12",
"mongoose": "^4.7.6",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"pug": "^2.0.0-beta6",
"rxjs": "^5.0.1",
"serve-favicon": "~2.3.0",
"socket.io": "^1.2.0",
"socketio-jwt": "^4.5.0",
"ts-helpers": "^1.1.1",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@types/node": "^7.0.12",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"codelyzer": "~2.0.0-beta.1",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"protractor": "~4.0.13",
"ts-node": "^1.2.1",
"tslint": "^4.0.2",
"typescript": "^2.0.10"
}
}