forked from mozilla-services/screenshots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.41 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
{
"name": "firefox-screenshots",
"description": "An experiment in creating better shareable versions of content.",
"version": "31.3.0",
"author": "Mozilla (https://mozilla.org/)",
"bugs": {
"url": "https://github.com/mozilla-services/screenshots/issues"
},
"dependencies": {
"accepts": "1.3.4",
"atob": "2.0.3",
"aws-sdk": "2.132.0",
"btoa": "1.1.2",
"classnames": "2.2.5",
"content-disposition": "0.5.2",
"convict": "4.0.2",
"cookies": "0.7.1",
"core-js": "2.5.1",
"csurf": "1.9.0",
"envc": "2.5.0",
"escape-html": "1.0.3",
"express": "4.16.2",
"fluent": "0.4.3",
"fluent-intl-polyfill": "0.1.0",
"fluent-langneg": "0.1.0",
"fluent-react": "0.4.1",
"full-icu": "1.2.1",
"jpm": "1.3.1",
"keygrip": "1.0.2",
"mobile-detect": "1.3.7",
"morgan": "1.9.0",
"mozlog": "2.1.1",
"multer": "1.3.0",
"node-statsd": "0.1.1",
"nodemon": "1.12.1",
"nodify-uuid": "0.0.1",
"pg": "6.2.5",
"pg-patcher": "0.4.0",
"query-string": "5.0.0",
"raven": "2.2.1",
"raven-js": "3.18.1",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-masonry-component": "5.0.7",
"rimraf": "2.6.2",
"universal-analytics": "0.4.15",
"uuid": "3.1.0",
"valid-url": "1.0.9",
"wreck": "13.0.3"
},
"devDependencies": {
"addons-linter": "0.27.0",
"babel-cli": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"body-parser": "1.18.2",
"browserify": "14.4.0",
"david": "11.0.0",
"envify": "4.1.0",
"eslint": "4.8.0",
"eslint-plugin-mozilla": "0.4.4",
"eslint-plugin-no-unsanitized": "2.0.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "^7.3.0",
"fx-runner": "1.0.8",
"geckodriver": "1.10.0",
"istanbul-middleware": "0.2.2",
"mocha": "4.0.1",
"node-sass": "4.5.3",
"npm-run-all": "4.1.1",
"nsp": "2.8.1",
"pontoon-to-webext": "1.0.2",
"sass-lint": "1.12.0",
"selenium-webdriver": "4.0.0-alpha.1",
"svgo": "1.0.3",
"uglify-js": "3.1.3",
"uglifyify": "4.0.4",
"web-ext": "2.1.0"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://screenshots.firefox.com",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-services/screenshots.git"
},
"scripts": {
"lint": "npm-run-all lint:*",
"lint:addon": "make zip && addons-linter ./build/screenshots.zip -o text",
"lint:flake8": "make flake8",
"lint:js": "eslint .",
"lint:sass": "sass-lint -v -q",
"postlint": "nsp check -o summary",
"nsp": "nsp check",
"posttest": "npm run lint",
"test": "bin/test-helpers/make_addon_with_unavailable_server && mocha test/ test/server/unit/*",
"test:selenium": "bin/test-helpers/make_addon_with_unavailable_server && mocha test/test.js",
"test:server": "make .venv && cd test/server && ../../.venv/bin/pytest -m 'not slow'",
"make_versions_exact": "node bin/build-scripts/make_versions_exact.js",
"update_outdated": "david update && npm run make_versions_exact && npm update && npm outdated",
"fill_database": "make .venv && ./.venv/bin/python ./bin/load_test_exercise.py -q --little-image --create=50 --read-shot=0 --read-my-shots=0 --search=0 --new-account http://localhost:10080",
"svgo": "svgo --folder=addon/webextension/icons && svgo --folder=static/img"
}
}