-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "@pairwise/external-services",
"version": "0.0.1",
"private": true,
"description": "An Express server to mock external service APIs for testing and development",
"files": [
"dist"
],
"main": "dist/services-app.js",
"typings": "dist/services-app.d.ts",
"scripts": {
"build": "tsc",
"watch": "concurrently \"yarn build -- -w\" \"nodemon --inspect ./dist/services-app.js\"",
"eslint": "eslint 'src/**/*.{ts,tsx}'",
"eslint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"lint": "yarn prettier && yarn eslint",
"format": "yarn prettier:fix && yarn eslint:fix",
"prettier": "prettier --list-different \"src/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"test": "yarn lint",
"start": "node ./dist/services-app.js",
"start:https": "SERVER_URL=https://127.0.0.1:9000 node ./dist/services-app.js"
},
"dependencies": {
"@types/faker": "4.1.8",
"@types/node": "13.1.2",
"concurrently": "5.0.2",
"cors": "2.8.5",
"dotenv": "8.2.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.8",
"eslint-plugin-prefer-arrow": "1.2.2",
"express": "4.17.1",
"faker": "4.1.0",
"morgan": "1.9.1",
"prettier": "2.3.1",
"querystring": "0.2.0",
"supertest": "4.0.2",
"typescript": "4.3.4"
}
}