forked from mozilla/extension-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
{
"name": "extension-workshop",
"version": "1.0.0",
"description": "Firefox Extension Workshop",
"main": "assets/scripts/scripts.js",
"repository": "https://github.com/mozilla/extension-workshop",
"author": "Lance Cummings <[email protected]>",
"license": "MPL-2.0",
"private": true,
"dependencies": {
"dompurify": "1.0.11",
"foundation-sites": "6.5.3",
"hamburgers": "1.1.3",
"jquery": "3.4.1",
"lunr": "2.3.6",
"slick-carousel": "1.8.1",
"velocity-animate": "1.5.2",
"velocity-ui-pack": "1.2.2"
},
"devDependencies": {
"eslint": "6.1.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"rimraf": "2.6.3",
"stylelint": "10.1.0",
"stylelint-config-standard": "18.3.0",
"svgo": "1.3.0"
},
"scripts": {
"lint": "eslint .",
"stylelint": "stylelint --syntax scss **/*.scss",
"prettier": "prettier --write '**'",
"prettier-ci": "prettier -c '**'",
"prettier-dev": "pretty-quick --branch master",
"test": "npm run prettier-ci && npm run lint && npm run stylelint",
"clean": "rimraf './.jekyll-cache/' && jekyll clean",
"build": "JEKYLL_ENV=production SVGO_BIN='node_modules/svgo/bin/svgo' jekyll build",
"start": "jekyll serve --unpublished --config _config.yml,_config_local.yml",
"start-prodlike": "SVGO_BIN='node_modules/svgo/bin/svgo' jekyll serve"
}
}