This repository has been archived by the owner on Mar 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
133 lines (133 loc) · 4.83 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"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": "^8.9.0"
},
"scripts": {
"cleanup": "shx rm -rf build dist",
"copy:img": "shx mkdir -p dist/img && shx cp -r img/* dist/img",
"copy:vendor:bootstrap": "shx mkdir -p dist/vendor/bootstrap && shx cp -r node_modules/bootstrap/dist/* dist/vendor/bootstrap",
"copy:vendor:font-awesome": "shx mkdir -p dist/vendor/font-awesome && shx cp -r node_modules/font-awesome/* dist/vendor/font-awesome",
"copy:vendor:tabzilla": "shx mkdir -p dist/vendor/mozilla-tabzilla/css && shx mkdir -p dist/vendor/mozilla-tabzilla/media/img && shx cp node_modules/mozilla-tabzilla/css/tabzilla.css dist/vendor/mozilla-tabzilla/css && shx cp -r node_modules/mozilla-tabzilla/media/img/* dist/vendor/mozilla-tabzilla/media/img",
"copy:vendor:mofo-ui": "shx mkdir -p dist/vendor/mofo-ui && shx cp node_modules/mofo-ui/dist/mofo-ui.css dist/vendor/mofo-ui",
"copy:vendor:locale-data": "shx mkdir -p dist/vendor/react-intl/locale-data && shx cp node_modules/react-intl/locale-data/* dist/vendor/react-intl/locale-data",
"copy-static-files": "run-s copy:img copy:vendor:*",
"l10n": "pontoon-to-json",
"less": "lessc less/index.less dist/styles.css --source-map=dist/styles.css.map --clean-css=\"--s0\"",
"lint": "eslint --ext .js --ext .jsx .",
"lint:fix": "npm run lint -- --fix",
"postinstall": "npm run prep",
"prep": "run-s cleanup copy-static-files less l10n webpack:server webpack:client",
"start": "run-s prep l10n && run-p start:*",
"start:app": "node app",
"start:less": "chokidar-cmd -c \"npm run less\" -t less",
"start:client": "npm run webpack:client -- --watch",
"start:server": "npm run webpack:server -- --watch",
"test": "run-s prep test:*",
"test:lint": "npm run lint",
"test:mocha": "mocha --compilers js:babel-core/register",
"test:spider": "node spider",
"webpack:client": "webpack --config ./config/webpack/webpack.client.config.js --progress --colors",
"webpack:server": "webpack --config ./config/webpack/webpack.server.config.js --progress --colors"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"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.3",
"chokidar": "^1.6.0",
"chokidar-cmd": "^1.2.1",
"classnames": "^2.2.1",
"comment-parser": "^0.3.1",
"document-env-vars": "^2.1.0",
"es5-shim": "^4.4.1",
"eslint": "^3.3.1",
"eslint-loader": "^1.5.0",
"esprima-harmony-jscs": "^1.1.0-bin",
"express": "^4.12.3",
"font-awesome": "^4.3.0",
"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",
"json-loader": "^0.5.1",
"leaflet.markercluster": "^0.4.0",
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"mapbox.js": "^2.1.5",
"merge-stream": "^1.0.0",
"minimatch": "^3.0.0",
"minimist": "^1.2.0",
"mofo-localize": "^1.0.0",
"mofo-style": "^2.4.0",
"mofo-ui": "1.6.0",
"moment": "^2.10.3",
"mozilla-tabzilla": "^0.5.1",
"npm-run-all": "^3.0.0",
"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",
"require-uncached": "^1.0.2",
"routington": "^1.0.3",
"shx": "^0.1.4",
"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": {
"chai": "^3.5.0",
"jsdom": "^9.4.5",
"marked": "^0.3.3",
"mocha": "^3.0.2",
"open": "0.0.5",
"should": "^11.1.0",
"simplecrawler": "^0.5.2",
"sinon": "^1.17.6",
"supertest": "^1.0.1",
"webpack-dev-server": "^1.15.0"
},
"private": true
}