This repository has been archived by the owner on Feb 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
64 lines (64 loc) · 2.38 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
{
"name": "ivreader",
"version": "0.0.1",
"description": "Requests information about Pokemon currently in inventory from Niantic and displays stats for each Pokemon in a table.",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:Eric-Carlton/PokemonGoReader.git"
},
"license": "MIT",
"dependencies": {
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/forms": "0.2.0",
"@angular/http": "2.0.0-rc.4",
"@angular/platform-browser": "2.0.0-rc.4",
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
"@angular/router": "3.0.0-beta.1",
"@angular/router-deprecated": "2.0.0-rc.2",
"@angular/upgrade": "2.0.0-rc.4",
"angular2-in-memory-web-api": "0.0.14",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"bunyan": "^1.8.1",
"core-js": "^2.4.0",
"express": "^4.14.0",
"http-server": "^0.9.0",
"jquery": "^3.1.0",
"pogobuf": "^1.10.0",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.5.4",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.27",
"uglify-js": "^2.7.3",
"zone.js": "^0.6.12"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run webapp\"",
"start-dev": "concurrently \"npm run server\" \"npm run webapp-dev\"",
"server": "node server/index.js | node node_modules/bunyan/bin/bunyan",
"webapp": "npm run clean && tsc && npm run uglify && node ./node_modules/http-server/bin/http-server",
"webapp-dev": "npm run clean && tsc && npm run uglify-dev && concurrently \"npm run tsc:w\" \"npm run lite\"",
"lite": "lite-server",
"postinstall": "node ./node_modules/typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "node ./node_modules/typings",
"clean": "node ./node_modules/rimraf/bin.js ./webapp/js/*",
"uglify": "node ./node_modules/uglify-js/bin/uglifyjs webapp/js/app.js -o webapp/js/app.min.js -m -c",
"uglify-dev": "node ./node_modules/uglify-js/bin/uglifyjs webapp/js/app.js -o webapp/js/app.min.js --in-source-map webapp/js/app.js.map --source-map webapp/js/app.min.js.map --source-map-url app.min.js.map -m -c"
},
"jshintConfig": {
"esversion": 6,
"node": true
},
"devDependencies": {
"jshint": "^2.9.2",
"concurrently": "^2.0.0",
"lite-server": "^2.2.0",
"typescript": "^1.8.10",
"typings": "^1.0.4"
}
}