This repository was archived by the owner on Dec 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.83 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": "publish.webmaker.org",
"version": "0.0.1",
"description": "A server to save and publish makes/projects created on Thimble and X-ray Goggles",
"main": "app.js",
"scripts": {
"start": "node server",
"env": "cp env.dist .env",
"knex": "npm run migrate && npm run seed",
"migrate": "knex migrate:latest",
"seed": "knex seed:run",
"pretest": "npm run knex && npm run lint",
"test": "lab -t 80 -c --verbose --colors --assert code --timeout 5000 --leaks",
"lint": "eslint adaptors api lib server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/publish.webmaker.org.git"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/publish.webmaker.org/issues"
},
"homepage": "https://github.com/mozilla/publish.webmaker.org",
"engines": {
"node": "^6.11.1"
},
"dependencies": {
"@newrelic/native-metrics": "^2.1.1",
"bluebird": "^3.5.0",
"bookshelf": "^0.10.3",
"boom": "^5.1.0",
"bunyan": "^1.3.6",
"bunyan-prettystream": "^0.1.3",
"catbox-redis": "^3.0.1",
"habitat": "^3.1.2",
"hapi": "^16.2.0",
"hapi-auth-bearer-token": "^5.1.0",
"hapi-bunyan": "^0.7.0",
"hoek": "^4.1.1",
"inert": "^4.2.0",
"joi": "^10.5.2",
"knex": "^0.12.9",
"lout": "^10.0.1",
"mime": "^1.3.4",
"newrelic": "^1.39.1",
"noxmox": "^0.2.4",
"pg": "^4.5.5",
"pg-query-stream": "^0.7.0",
"redis-url": "^1.2.1",
"request": "^2.58.0",
"sqlite3": "^3.1.0",
"tar-stream": "^1.2.1",
"vision": "^4.1.1"
},
"devDependencies": {
"aws-sdk": "^2.493.0",
"code": "^4.0.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"eslint": "^2.13.1",
"inquirer": "^6.5.0",
"lab": "^13.1.0",
"mofo-style": "^2.4.0",
"mox-server": "^0.2.0",
"mysql2": "^1.6.5"
}
}