forked from jeffbcross/aim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "aim",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "./node_modules/.bin/webpack-dev-server",
"build_server": "tsc server/stock_server.ts -m commonjs --outDir dist || true",
"start_server": "npm run build_server && node dist/stock_server",
"test": "./node_modules/.bin/karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffbcross/aim.git"
},
"author": "jeffbcross, robwormald",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/jeffbcross/aim/issues"
},
"homepage": "https://github.com/jeffbcross/aim#readme",
"devDependencies": {
"css-loader": "^0.19.0",
"es6-shim": "^0.33.6",
"jasmine": "^2.3.2",
"jasmine-core": "^2.3.4",
"karma": "^0.13.11",
"karma-chrome-launcher": "^0.2.1",
"karma-jasmine": "^0.3.6",
"karma-webpack": "^1.7.0",
"node-sass": "^3.3.3",
"sass-loader": "^3.0.0",
"style-loader": "^0.12.4",
"ts-loader": "^0.5.6",
"tsd": "^0.6.5",
"typescript": "^1.6.2",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0",
"webpack-livereload-plugin": "^0.4.0"
},
"dependencies": {
"@reactivex/rxjs": "^5.0.0-alpha.6",
"angular2": "^2.0.0-alpha.44",
"bootstrap": "^3.3.5",
"cors": "^2.7.1",
"d3": "^3.5.6",
"express": "^4.13.3",
"reflect-metadata": "^0.1.2",
"ws": "^0.8.0",
"zone.js": "^0.5.8"
}
}