-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
32 lines (32 loc) · 930 Bytes
/
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
{
"name": "connections-hiring",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:primer-io/connections-hiring.git",
"author": "Will Knowles <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"opn": "^6.0.0"
},
"scripts": {
"start:processors": "ts-node connections/main.ts",
"start:payment-methods": "ts-node checkout/server.ts"
}
}