-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 697 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 697 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
{
"name": "ember-help-wanted-server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"test": "mocha test/**/*.js"
},
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.9.0"
},
"dependencies": {
"@octokit/rest": "^18.9.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.0.3",
"nock": "^13.1.1",
"prettier": "^2.3.2"
}
}