-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.09 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
59
60
61
62
63
64
65
66
67
68
{
"name": "dynamic-pricing-for-online-marketplaces",
"version": "1.0.0",
"description": "Some fancy algorithm stuff for dynamically calculating prices for online marketplaces",
"main": "index.js",
"scripts": {
"tsc": "tsc -p src -w",
"tsc:w": "tsc -p src -w",
"stylusCompile:watch": "stylus -w -u nib src/assets/styles/main.styl",
"postinstall": "typings install",
"start": "concurrent \"npm run tsc:w\" \"npm run stylusCompile:watch\" \"node app.js\"",
"dev": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sittenstrolch/artiverse.git"
},
"author": "Markus Petrykowski",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sittenstrolch/artiverse/issues"
},
"homepage": "lunch.time",
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"@angular/upgrade": "2.0.0-rc.1",
"angular-chartist.js": "^3.3.13",
"angular2-in-memory-web-api": "0.0.7",
"body-parser": "^1.15.1",
"bootstrap": "^3.3.6",
"chartist-plugin-axistitle": "0.0.1",
"chartist-plugin-legend": "^0.3.1",
"chartist-plugin-threshold": "0.0.2",
"chartist-plugin-tooltip": "0.0.11",
"chartist-plugin-zoom": "^0.1.0",
"cookie-parser": "^1.4.1",
"csvtojson": "^0.5.12",
"es6-promise": "^3.2.1",
"es6-shim": "^0.35.1",
"express": "^4.13.3",
"font-awesome": "^4.6.1",
"hdb": "^0.5.5",
"mathjs": "^3.2.1",
"nib": "^1.1.0",
"path": "^0.12.7",
"q": "^1.4.1",
"r-script": "0.0.3",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"stylus": "^0.53.0",
"symbol-observable": "^0.2.4",
"systemjs": "0.19.27",
"zone.js": "^0.6.12"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^1.3.1",
"typescript": "^1.8.10",
"typings": "^0.8.1"
}
}