-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.17 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "express-typescript-starter",
"version": "0.1.0",
"description": "A starting point for Node.js express apps with TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/sahat/hackathon-starter.git"
},
"author": "Dmytro Zharkov",
"license": "MIT",
"scripts": {
"start": "npm run build && npm run watch",
"start-client": "./node_modules/@angular/cli/bin/ng serve",
"start-production": "ENV=prod node dist/server.js",
"build": "npm run build-ts && npm run tslint && npm run build-client && npm run copy-static-assets",
"build-client": "./node_modules/@angular/cli/bin/ng build --target=production --environment=prod",
"serve": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"test": "npm run build && jest --forceExit",
"client-test": "./node_modules/@angular/cli/bin/ng test --single-run --code-coverage",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"e2e": "./node_modules/@angular/cli/bin/ng e2e",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"copy-static-assets": "node copyStaticAssets.js",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {
"@angular/animations": "^4.0.0",
"@angular/cdk": "^2.0.0-beta.8",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"async": "^2.1.2",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.2",
"bootstrap": "^4.0.0-beta",
"compression": "^1.6.2",
"core-js": "^2.4.1",
"dotenv": "^2.0.0",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-handlebars": "^3.0.0",
"express-session": "^1.14.2",
"express-validator": "^3.1.3",
"fbgraph": "^1.3.0",
"handlebars": "^4.0.10",
"lodash": "^4.17.4",
"lusca": "^1.4.1",
"mongoose": "^4.11.7",
"morgan": "^1.7.0",
"request": "^2.78.0",
"rxjs": "^5.1.0",
"socket.io": "^2.0.3",
"uuid": "^3.1.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "^1.3.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/language-service": "^4.0.0",
"@types/async": "^2.0.40",
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "^1.16.2",
"@types/compression": "0.0.33",
"@types/dotenv": "^2.0.20",
"@types/errorhandler": "0.0.30",
"@types/express": "^4.0.35",
"@types/express-handlebars": "0.0.29",
"@types/express-session": "0.0.32",
"@types/jest": "^19.2.2",
"@types/jquery": "^2.0.41",
"@types/lodash": "^4.14.63",
"@types/mongoose": "^4.7.20",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/request": "0.0.45",
"@types/socket.io": "^1.4.29",
"@types/supertest": "^2.0.0",
"codelyzer": "~3.0.1",
"concurrently": "^3.4.0",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"jest": "^19.0.2",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"protractor": "~5.1.2",
"shelljs": "^0.7.7",
"supertest": "^2.0.1",
"ts-jest": "^19.0.8",
"ts-node": "~3.0.4",
"tslint": "~5.3.2",
"typescript": "~2.3.3",
"uuid-validate": "0.0.2"
}
}