-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
98 lines (98 loc) · 3.05 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
{
"name": "angular2-fullstack-starter",
"version": "0.0.1",
"description": "A skeleton application with Angular 2 (ES6/Babel), Webpack, Express and Node",
"main": "index.js",
"scripts": {
"build:dev": "webpack --colors --display-error-details --display-cached",
"build:prod": "NODE_ENV=production webpack --release --config webpack.config.prod.js",
"lint": "eslint public/app server",
"preprotractor": "npm run webdriver-update",
"protractor": "protractor test/protractor.conf.js",
"start": "node index.js",
"start:prod": "NODE_ENV=production npm start",
"test": "karma start test/karma.conf.js",
"webdriver-update": "webdriver-manager update",
"webdriver-start": "webdriver-manager start"
},
"author": "Joshua Godi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jgodi/angular2-fullstack-starter.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jgodi/angular2-fullstack-starter/issues"
},
"homepage": "https://github.com/jgodi/angular2-fullstack-starter",
"dependencies": {
"angular2": "2.0.0-beta.0",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"es7-reflect-metadata": "^1.2.0",
"rxjs": "5.0.0-beta.0",
"zone.js": "0.5.10"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-angular2-annotations": "^3.0.4",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.3.3",
"babel-plugin-transform-flow-strip-types": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babylon": "6.3.21",
"body-parser": "^1.14.1",
"clean-webpack-plugin": "^0.1.5",
"concurrently": "^1.0.0",
"convict": "^1.0.1",
"cors": "^2.7.1",
"css-loader": "^0.23.0",
"ejs": "^2.3.4",
"eslint": "^1.10.3",
"eslint-config-bullhorn": "latest",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.1.1",
"express": "^4.13.3",
"express-session": "^1.12.1",
"file-loader": "^0.8.5",
"ghooks": "^1.0.1",
"html-webpack-plugin": "^1.7.0",
"jasmine-core": "^2.3.4",
"jasmine-spec-reporter": "^2.4.0",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.6",
"karma-mocha-reporter": "^1.1.3",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"morgan": "^1.6.1",
"node-sass": "^3.4.2",
"nodemon": "^1.8.1",
"phantomjs": "^1.9.19",
"phantomjs-polyfill": "0.0.1",
"protractor": "^3.0.0",
"raw-loader": "^0.5.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"util": "^0.10.3",
"webdriver-manager": "^8.0.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"engines": {
"node": ">= 4.2.1",
"npm": ">= 3"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint"
}
}
}