-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.94 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
{
"name": "alvarcarto-order-service",
"version": "1.0.0",
"engines": {
"node": "12.x.x"
},
"description": "",
"author": "Alvar Carto",
"license": "UNLICENSED",
"dependencies": {
"alvarcarto-price-util": "git+https://alvarcarto-integration:[email protected]/kimmobrunfeldt/alvarcarto-price-util.git#v7.3.3",
"aws-sdk": "^2.536.0",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"common-tags": "^1.4.0",
"compression": "^1.6.2",
"cors": "^2.8.1",
"dotenv": "^8.1.0",
"errorhandler": "^1.5.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"express": "^4.14.0",
"express-rate-limit": "^2.6.0",
"express-validation": "^1.0.1",
"finnish-holidays-js": "^1.1.0",
"geolib": "^2.0.22",
"i18n-iso-countries": "^1.11.0",
"joi": "^13.0.2",
"juice": "^4.0.2",
"knex": "^0.19.4",
"lodash": "^4.17.2",
"moment": "^2.24.0",
"moment-business-time": "^0.7.1",
"moment-timezone": "^0.5.26",
"morgan": "^1.7.0",
"mustache": "^2.3.0",
"pg": "^7.12.1",
"postmark": "^1.3.1",
"pretty-bytes": "^4.0.2",
"promise-retryify": "^0.5.0",
"qs": "^6.4.0",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"server-destroy": "^1.0.1",
"simple-encryptor": "^1.1.0",
"stripe": "^7.9.1",
"uuid": "^3.3.2",
"winston": "^2.3.1"
},
"devDependencies": {
"@alvarcarto/mapsy": "^1.0.2",
"@google/maps": "^0.4.2",
"alvarcarto-common": "git+https://alvarcarto-integration:[email protected]/kimmobrunfeldt/alvarcarto-common.git#v4.8.2",
"asciichart": "^1.5.7",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"city-timezones": "^1.0.2",
"cli-table": "^0.3.1",
"concurrently": "^4.1.2",
"csv": "^1.1.1",
"dcr": "^0.3.0",
"inquirer": "^4.0.1",
"js-combinatorics": "^0.5.2",
"json-diff": "^0.5.2",
"mocha": "^4.0.1",
"nock": "^12.0.2",
"nodemon": "^1.19.2",
"osmosis": "^1.1.5",
"printf": "^0.5.1",
"rewire": "^4.0.1",
"scrape-it": "^5.2.0",
"seedrandom": "^2.4.3",
"sinon": "^4.1.3",
"supertest": "^3.0.0",
"table": "^4.0.2",
"yargs": "^8.0.2"
},
"scripts": {
"postinstall": "./tools/run-migrations.sh",
"start": "NODE_ENV=development npm run inline-emails && concurrently --names \"WATCH,STRIPE\" \"npm run watch\" \"npm run stripe\"",
"watch": "nodemon --watch ./src -e js src/index.js",
"stripe": "stripe listen --forward-to localhost:$(grep PORT .env | cut -d '=' -f2)/api/webhooks/stripe",
"lint": "eslint ./src ./test",
"test": "npm run inline-emails && NODE_ENV=test mocha",
"test-integration": "npm run inline-emails && NODE_ENV=test mocha -g 'integration'",
"inline-emails": "./tools/inline-emails.sh",
"generate-fb-feed": "node tools/create-product-feed/index.js tools/create-product-feed/cities.csv > feed.csv"
}
}