-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "afterpay-sdk-example-server",
"version": "1.1.0",
"description": "Server to power the iOS and Android SDK example applications",
"main": "dist/server.js",
"scripts": {
"fix": "eslint --fix .",
"lint": "eslint .",
"build": "rimraf dist && tsc",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/afterpay/sdk-example-server"
},
"author": "Afterpay",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/afterpay/sdk-example-server/issues"
},
"homepage": "https://github.com/afterpay/sdk-example-server#readme",
"devDependencies": {
"@types/express": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
},
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-file-routing": "^2.1.3",
"rimraf": "^5.0.0"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"quoteProps": "consistent"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
]
},
"eslintIgnore": [
"dist"
]
}