-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
47 lines (47 loc) · 1.86 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
{
"name": "cozy-site",
"version": "0.1.0",
"description": "Assets and templates to build the Cozy website",
"main": "index.js",
"scripts": {
"dev": "node output.js --dev",
"dev:fr": "node output-fr.js --dev",
"dev:es": "node output-es.js --dev",
"build": "node output.js",
"build:fr": "node output-fr.js",
"build:es": "node output-es.js",
"order-locales": "yarn order-locales:fr && yarn order-locales:en && yarn order-locales:es",
"order-locales:fr": "jq --tab --sort-keys . src/locales/fr.json > src/locales/fr_sorted.json && mv src/locales/fr_sorted.json src/locales/fr.json",
"order-locales:en": "jq --tab --sort-keys . src/locales/en.json > src/locales/en_sorted.json && mv src/locales/en_sorted.json src/locales/en.json",
"order-locales:es": "jq --tab --sort-keys . src/locales/es.json > src/locales/es_sorted.json && mv src/locales/es_sorted.json src/locales/es.json"
},
"author": "Cozy Cloud <[email protected]> (https://cozycloud.cc/)",
"repository": "https://github.com/cozy/cozy-site",
"license": "AGPL-3.0",
"dependencies": {
"async": "^1.5.0",
"handlebars": "4.0.4",
"metalsmith": "2.1.0",
"metalsmith-assets": "0.1.0",
"metalsmith-autoprefixer": "1.1.0",
"metalsmith-browser-sync": "1.1.0",
"metalsmith-build-date": "0.1.0",
"metalsmith-filenames": "1.0.0",
"metalsmith-fingerprint": "1.0.3",
"metalsmith-i18n": "0.1.3",
"metalsmith-ignore": "0.1.2",
"metalsmith-imagemin": "^1.1.3",
"metalsmith-in-place": "^1.3.2",
"metalsmith-layouts": "1.4.2",
"metalsmith-mapsite": "1.0.3",
"metalsmith-permalinks": "0.4.0",
"metalsmith-rename": "1.0.0",
"metalsmith-stylus": "1.0.0",
"metalsmith-uglify": "^1.2.1",
"minimist": "1.2.0",
"normalize-styl": "3.0.3",
"printit": "0.1.15",
"request-json-light": "0.5.22",
"cozy-bootstrap": "1.13.1"
}
}