forked from mozilla/thimble.mozilla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.48 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
{
"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.2.4",
"bestlang": "0.0.1",
"body-parser": "^1.13.1",
"chokidar": "^1.4.2",
"colors": "^1.1.2",
"compression": "^1.5.0",
"cookie-parser": "^1.3.5",
"cookie-session": "^1.1.0",
"cookies-js": "~1.2.1",
"cors": "^2.7.1",
"cryptr": "^1.0.0",
"csurf": "^1.8.3",
"express": "^4.13.0",
"form-data": "^0.2.0",
"fs-writefile-promise": "1.0.3",
"glob": "^6.0.4",
"grunt": "~0.4.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-csslint": "0.1.2",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-less": "^1.0.1",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-execute": "0.1.5",
"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": "2.1.2",
"jit-grunt": "^0.9.1",
"jquery": "~2.1.4",
"less-middleware": "2.0.1",
"memorystream": "^0.3.1",
"moment": "~2.11.2",
"morgan": "^1.7.0",
"multer": "^1.0.1",
"node-uuid": "~1.4.3",
"npm-run-all": "^1.5.1",
"nunjucks": "^2.3.0",
"properties-parser": "0.3.1",
"q-io": "1.13.2",
"request": "2.21.0",
"serve-favicon": "^2.3.0",
"tar-stream": "^1.2.1",
"throng": "^4.0.0",
"time-grunt": "^1.2.1",
"uuid": "^2.0.1",
"webmaker-analytics": "~0.1.5",
"webmaker-i18n": "^0.3.31",
"wolfy87-eventemitter": "~4.3.0"
},
"scripts": {
"postinstall": "grunt requirejs:dist && npm run localize && npm run localize-client",
"test": "grunt",
"client": "node scripts/watch-client",
"server": "node app.js",
"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"
}
}