-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.66 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
{
"name": "meaningfuljs2",
"version": "0.8.0",
"description": "A simple, sane MEAN stack featuring Angular 2.",
"main": "server.js",
"scripts": {
"init": "npm install",
"postinstall": "jspm install && bower install",
"start": "node src/server/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Scott Davis <scott@thirstyhead.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ThirstyHead/meaningfuljs2.git"
},
"engines": {
"node": "4.2.x"
},
"dependencies": {
"child-process-promise": "~2.0.2",
"express": "~4.13.4",
"lodash": "~4.0.0",
"socket.io": "~1.4.8"
},
"devDependencies": {
"@ljharb/eslint-config": "^2.2.0",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.2",
"babel-plugin-angular2-annotations": "^5.0.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"bower": "~1.7.7",
"browser-sync": "~2.13.0",
"del": "~2.2.0",
"eslint": "~2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"gulp": "~3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cli": "~1.2.0",
"gulp-eslint": "^2.0.0",
"gulp-help": "~1.6.1",
"gulp-jspm": "~0.5.10",
"gulp-load-plugins": "~1.2.0",
"gulp-rename": "~1.2.2",
"gulp-replace": "~0.5.4",
"gulp-sourcemaps": "~1.6.0",
"json-server": "~0.8.8",
"jspm": "~0.16.27",
"merge-stream": "~1.0.0",
"pkginfo": "~0.3.1",
"run-sequence": "~1.2.1"
},
"jspm": {
"dependencies": {
"@angular/common": "npm:@angular/common@2.0.0-rc.4",
"@angular/compiler": "npm:@angular/compiler@2.0.0-rc.4",
"@angular/core": "npm:@angular/core@2.0.0-rc.4",
"@angular/forms": "npm:@angular/forms@0.2.0",
"@angular/http": "npm:@angular/http@2.0.0-rc.4",
"@angular/platform-browser": "npm:@angular/platform-browser@2.0.0-rc.4",
"@angular/platform-browser-dynamic": "npm:@angular/platform-browser-dynamic@2.0.0-rc.4",
"@angular/router": "npm:@angular/router@3.0.0-beta.2",
"crypto": "github:jspm/nodelibs-crypto@^0.1.0",
"es6-shim": "github:es-shims/es6-shim@^0.35.1",
"reflect-metadata": "npm:reflect-metadata@^0.1.3",
"rxjs": "npm:rxjs@^5.0.0-beta.6",
"zone.js": "npm:zone.js@^0.6.12"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}