-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·35 lines (35 loc) · 923 Bytes
/
package.json
File metadata and controls
executable file
·35 lines (35 loc) · 923 Bytes
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
{
"name": "shipstream-sample-connector",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "micro",
"dev": "micro-dev index.js --watch lib --poll",
"inspect": "node --inspect node_modules/.bin/micro-dev index.js --watch lib --poll",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^10.0.0",
"micro": "^9.3.4",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"micro-dev": "^3.0.0",
"prettier": "2.3.2"
},
"engines": {
"node": ">=14"
}
}