-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.63 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
{
"author": "Mike Veldsink <mikev@uber.com>",
"name": "payments-reference-app",
"version": "1.0.0",
"description": "Reference app to introduce you to the uber deposit API",
"keywords": [
"uber",
"deposit",
"api",
"example",
"reference"
],
"homepage": "https://developer.uber.com/docs/payments/deposits",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"global": "^4.4.0",
"node-sass": "^4.12.0",
"node-sass-middleware": "^0.11.0",
"parcel": "^1.12.4",
"uuid": "^3.3.3"
},
"jest": {
"collectCoverage": true
},
"scripts": {
"start": "parcel build src/shared/resources/**/** --public-url ./ --global root -t node -d src/shared/public && concurrently --kill-others \"node src/merchant/index\" \"node src/app/index\"",
"dev": "concurrently --kill-others \"parcel watch src/shared/resources/**/** -d src/shared/public --global root --target node --public-url ./\" \"nodemon src/app/index\" \"nodemon src/merchant/index\"",
"test": "yarn add global jest && jest"
},
"devDependencies": {
"concurrently": "^4.1.1",
"cssnano": "^4.1.10",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.1",
"prettier-eslint": "^9.0.0",
"pug": "^2.0.4",
"sass": "^1.22.3"
}
}