forked from Urigo/angular-meteor-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "meteor-typescript",
"private": true,
"scripts": {
"start": "meteor run",
"start:prod": "meteor run --production",
"build": "meteor build ./build/",
"clear": "meteor reset",
"meteor:update": "meteor update --all-packages",
"test": "meteor test --driver-package practicalmeteor:mocha",
"test:ci": "meteor test --once --driver-package dispatch:mocha-phantomjs"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/graphql": "^0.11.0",
"@types/meteor": "^1.3.31",
"@types/mocha": "^2.2.42",
"@types/winston": "^2.3.5",
"chai": "^4.1.1",
"chai-spies": "^0.7.1",
"meteor-node-stubs": "^0.2.11",
"ts-node": "^3.3.0",
"tslint": "^5.7.0"
},
"dependencies": {
"apollo-client": "^1.9.1",
"babel-runtime": "^6.26.0",
"body-parser": "^1.17.2",
"express": "^4.15.4",
"graphql": "^0.11.2",
"graphql-server-express": "^1.1.2",
"graphql-tools": "^1.2.2",
"meteor-rxjs": "^0.4.7",
"moment": "^2.18.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.4.3",
"typescript": "^2.5.2",
"winston": "^2.3.1",
"zone.js": "^0.8.17"
}
}