forked from Eric-Carlton/PokemonGoReader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.95 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.95 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
{
"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": "eric121492@gmail.com",
"repository": {
"type": "git",
"url": "git@github.com: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.6",
"bunyan": "^1.8.1",
"core-js": "^2.4.0",
"express": "^4.14.0",
"http-server": "^0.9.0",
"pogobuf": "^1.2.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.27",
"zone.js": "^0.6.12"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run webapp\"",
"server": "node server/index.js | node node_modules/bunyan/bin/bunyan",
"webapp": "npm run clean && tsc --outDir ./webapp/js && node ./node_modules/http-server/bin/http-server",
"webapp-dev": "npm run clean && tsc --outDir ./webapp/js && concurrently \"npm run tsc:w\" \"npm run lite\"",
"lite": "lite-server",
"postinstall": "node ./node_modules/typings install",
"tsc": "tsc --outDir ./webapp/js",
"tsc:w": "tsc -w --outDir ./webapp/js",
"typings": "nod ./node_modules/typings",
"clean": "find ./webapp/js -name \"*.js*\" -delete"
},
"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"
}
}