-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.81 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
{
"name": "shopfiy-product-feed",
"version": "0.1.1",
"description": "Shopify product feed for 3rd party systems",
"main": "index.js",
"scripts": {
"test": "jest && xo",
"start": "micro -p ${PORT:-3000}",
"deploy": "npm test && npm run deploy:sync && npm run deploy:setup && npm run deploy:golive",
"deploy:sync": "rsync -az --exclude '.git*' --no-owner --no-group --delete -e 'ssh -o StrictHostKeyChecking=no' ./ nerdsofalltrad.es:~nerdsofalltrad-es/shopify-product-feed/",
"deploy:setup": "ssh nerdsofalltrad.es 'npm install --prefix ~nerdsofalltrad-es/shopify-product-feed --only=production'",
"deploy:golive": "ssh nerdsofalltrad.es 'systemctl restart shopify-product-feed.nerdsofalltrad.es.service'"
},
"prettier": {
"singleQuote": true
},
"xo": {
"extends": "xo-react",
"esnext": true,
"space": true,
"env": [
"node",
"jest"
],
"rules": {
"new-cap": 0,
"complexity": 0,
"react/prop-types": 0,
"react/jsx-no-bind": 0,
"linebreak-style": 0,
"import/no-extraneous-dependencies": 0,
"capitalized-comments": 0,
"react/jsx-closing-tag-location": 0,
"react/jsx-tag-spacing": 0,
"react/jsx-closing-bracket-location": 0,
"react/react-in-jsx-scope": 0,
"object-curly-spacing": 0,
"operator-linebreak": 0
}
},
"repository": {
"type": "git",
"url": "git@github.com:nerdsofalltrades/shopify-product-feed.git"
},
"author": "Sebastian Misch - Nerds of all Trades GmbH",
"license": "MIT",
"dependencies": {
"micro": "9.3.0",
"micro-ratelimit": "0.3.0",
"node-fetch": "2.1.2"
},
"devDependencies": {
"eslint-config-xo-react": "0.16.0",
"eslint-plugin-flowtype": "2.49.4",
"eslint-plugin-react": "7.8.0",
"jest": "22.4.3",
"xo": "0.21.0"
}
}