forked from mozilla/thimble.mozilla.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "thimble.mozilla.org",
"version": "2.0.0",
"private": true,
"description": "Online code editor geared to people teaching and learning HTML, CSS, and JavaScript",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/thimble.mozilla.org.git"
},
"bugs": {
"url": "https://github.com/mozilla/thimble.mozilla.org/issues"
},
"keywords": [
"mozilla",
"thimble",
"editor"
],
"author": "Mozilla",
"license": "MPL-2.0",
"homepage": "https://thimble.mozilla.org",
"engines": {
"node": "4.6.x"
},
"dependencies": {
"async": "0.2.7",
"aws-sdk": "^2.23.0",
"bestlang": "0.0.1",
"body-parser": "^1.17.1",
"chokidar": "^1.6.1",
"colors": "^1.1.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^1.1.0",
"cookies-js": "~1.2.1",
"cors": "^2.8.1",
"cryptr": "^2.0.0",
"csurf": "^1.9.0",
"express": "^4.15.2",
"form-data": "^0.2.0",
"fs-writefile-promise": "^2.0.0",
"glob": "^7.1.1",
"grunt": "~0.4.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-csslint": "^2.0.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-less": "^1.4.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-execute": "0.2.2",
"grunt-git": "^0.3.4",
"grunt-lesslint": "^1.1.14",
"grunt-npm": "git://github.com/sedge/grunt-npm.git#branchcheck",
"grunt-update-submodules": "^0.4.1",
"habitat": "3.1.2",
"helmet": "^3.5.0",
"jit-grunt": "^0.10.0",
"jquery": "^3.2.1",
"less-middleware": "2.2.0",
"memorystream": "^0.3.1",
"moment": "~2.17.1",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"node-uuid": "~1.4.7",
"npm-run-all": "^4.0.2",
"nunjucks": "^2.3.0",
"properties-parser": "0.3.1",
"q-io": "1.13.2",
"request": "2.80.0",
"serve-favicon": "^2.4.1",
"tar-stream": "^1.5.2",
"throng": "^4.0.0",
"time-grunt": "^1.4.0",
"uuid": "2.0.3",
"webmaker-i18n": "^0.3.32",
"wolfy87-eventemitter": "^5.1.0"
},
"scripts": {
"postinstall": "grunt requirejs:dist && npm run localize && npm run localize-client",
"test": "grunt",
"client": "node scripts/watch-client",
"server": "node app.js",
"restart-server": "vagrant ssh -- pm2 restart thimble ; true",
"logs": "vagrant ssh -- pm2 logs --format",
"prestart": "npm run localize",
"start": "node scripts/start.js",
"invalidate": "node scripts/invalidate.js",
"localize": "node scripts/properties2json.js",
"localize-client": "node scripts/localize-client.js"
}
}