This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 513
/
Copy pathpackage.json
116 lines (116 loc) · 3 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"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": "^6.11.1"
},
"babel": {
"presets": [
"env"
],
"ignore": "**/*.min.js"
},
"stylelint": {
"extends": "stylelint-config-standard",
"ignoreFiles": "public/**/normalize.less"
},
"browserslist": [
"Firefox >= 50",
"Chrome >= 49",
"Safari >= 9.1",
"ie >= 11",
"Edge >= 12"
],
"dependencies": {
"async": "0.2.7",
"autoprefixer": "^7.1.2",
"aws-sdk": "^2.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"bestlang": "0.0.1",
"body-parser": "^1.17.1",
"bowser": "^1.7.1",
"co": "^4.6.0",
"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",
"css-loader": "^0.28.4",
"csurf": "^1.9.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^3.0.0",
"form-data": "^0.2.0",
"habitat": "3.1.2",
"helmet": "^3.5.0",
"jquery": "^3.2.1",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"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",
"on-build-webpack": "^0.1.0",
"postcss-loader": "^2.0.6",
"progress-bar-webpack-plugin": "^1.10.0",
"properties-parser": "0.3.1",
"request": "2.80.0",
"serve-favicon": "^2.4.1",
"shelljs": "^0.7.8",
"svg-url-loader": "^2.1.1",
"tar-stream": "^1.5.2",
"throng": "^4.0.0",
"uuid": "2.0.3",
"webmaker-i18n": "^0.3.32",
"webpack": "^3.2.0",
"wolfy87-eventemitter": "^5.1.0"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-plugin-prettier": "^2.2.0",
"is-reachable": "^2.3.3",
"prettier": "~1.8.2",
"shx": "^0.2.2",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0"
},
"scripts": {
"build:static": "webpack",
"build:l10n": "node scripts/localize",
"env": "shx cp env.dist .env",
"heroku-postbuild": "run-s build:*",
"invalidate": "node scripts/invalidate.js",
"server": "node app.js",
"services:logs": "vagrant ssh -- pm2 logs --format",
"prestart": "node scripts/verify-brackets",
"start": "run-p build:* server",
"test:eslint": "eslint .",
"test:stylelint": "stylelint \"public/**/*.less\"",
"test:lint:fix": "run-s \"test:* -- --fix\"",
"test": "run-s test:*"
}
}