forked from mozilla/learning.mozilla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.49 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.49 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
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
117
118
119
120
{
"name": "learning.mozilla.org",
"version": "1.0.5",
"description": " Initial attempt at implementing Webmaker Learning front-page.",
"author": "Mozilla",
"license": "MPL-2.0",
"homepage": "https://github.com/mozilla/learning.mozilla.org",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/learning.mozilla.org.git"
},
"bugs": {
"url": "https://github.com/mozilla/learning.mozilla.org/issues"
},
"engines": {
"node": "^4.4.1"
},
"scripts": {
"app": "npm run l10n && gulp app",
"build": "gulp",
"l10n": "pontoon-to-json",
"cleanup": "rm -rf dist && npm run l10n",
"preapp": "npm run cleanup",
"prebuild": "npm run cleanup",
"presmoketest": "npm run cleanup",
"prestart": "rm -rf dist",
"pretest": "npm run cleanup",
"postinstall": "npm run l10n && gulp postinstall",
"smoketest": "gulp smoketest",
"start": "npm run app",
"test": "gulp smoketest && npm run test:mocha && npm run test:browser && gulp lint-test",
"test:browser": "node test/browser/run-in-phantom.js",
"test:mocha": "mocha test/*.test.js",
"watch": "gulp watch"
},
"dependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.3.21",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"bootstrap": "^3.3.4",
"chalk": "^1.1.1",
"classnames": "^2.2.1",
"comment-parser": "^0.3.1",
"es5-shim": "^4.4.1",
"esprima-harmony-jscs": "^1.1.0-bin",
"express": "^4.12.3",
"font-awesome": "^4.3.0",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^3.1.0",
"gulp-gzip": "^1.0.0",
"gulp-if": "^2.0.0",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-less": "^3.0.1",
"gulp-minify-css": "^1.0.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.0",
"gulp-sitemap": "^2.0.1",
"gulp-sourcemaps": "^1.5.0",
"gulp-util": "^3.0.7",
"habitat": "^3.1.2",
"helmet": "^2.1.1",
"history": "^1.17.0",
"imports-loader": "^0.6.3",
"intl": "^1.2.4",
"intl-locales-supported": "^1.0.0",
"jshint": "^2.8.0",
"json-loader": "^0.5.1",
"jsx-loader": "^0.13.2",
"leaflet.markercluster": "^0.4.0",
"mapbox.js": "^2.1.5",
"merge-stream": "^1.0.0",
"minimatch": "^3.0.0",
"minimist": "^1.2.0",
"mocha": "^2.1.0",
"mofo-localize": "^0.1.1",
"mofo-style": "^1.0.1",
"mofo-ui": "1.5.1",
"moment": "^2.10.3",
"mozilla-tabzilla": "^0.5.1",
"object-assign": "^4.1.0",
"pontoon-to-json": "^1.0.1",
"react": "^0.14.0",
"react-addons-linked-state-mixin": "^0.14.3",
"react-addons-pure-render-mixin": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-addons-transition-group": "^0.14.3",
"react-circletree": "^2.5.0",
"react-dom": "^0.14.3",
"react-ga": "^1.0.12",
"react-intl": "^2.1.3",
"react-router": "^1.0.3",
"react-select": "^0.9.1",
"react-wp-content-loader": "0.0.2",
"routington": "^1.0.3",
"should": "^8.0.2",
"source-map-support": "^0.4.0",
"superagent": "^1.6.1",
"svgo": "^0.6.1",
"through2": "^2.0.0",
"underscore": "^1.8.3",
"url-template": "^2.0.6",
"urlize": "^0.2.1",
"val-loader": "^0.5.0",
"validator": "^5.4.0",
"vinyl": "^1.1.0",
"webpack": "^1.12.9",
"webpack-stream": "^3.1.0"
},
"devDependencies": {
"marked": "^0.3.3",
"mocha-phantomjs": "^4.0.1",
"open": "0.0.5",
"simplecrawler": "^0.5.2",
"supertest": "^1.0.1"
},
"private": true
}