forked from ember-fastboot/fastboot-app-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "fastboot-app-server",
"version": "2.0.0",
"description": "A production-ready app server for running Ember FastBoot apps",
"main": "src/fastboot-app-server.js",
"scripts": {
"test": "NODE_ENV=test mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-fastboot/fastboot-app-server.git"
},
"engines": {
"node": "8.* || 10.* || >= 12.*"
},
"keywords": [
"ember",
"fastboot",
"server"
],
"author": "Tom Dale <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ember-fastboot/fastboot-app-server/issues"
},
"homepage": "https://github.com/ember-fastboot/fastboot-app-server#readme",
"dependencies": {
"basic-auth": "^2.0.0",
"chalk": "^2.0.1",
"compression": "^1.6.2",
"express": "^4.13.3",
"fastboot": "^2.0.0",
"fastboot-express-middleware": "^2.0.0",
"fs-promise": "^2.0.3",
"request": "^2.81.0"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"chai": "^4.1.0",
"ember-cli": "^2.10.2",
"mocha": "^5.0.0",
"request-promise": "^4.2.1"
}
}