forked from CheezItMan/node-example
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 950 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 950 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
36
{
"name": "node-example",
"version": "1.0.0",
"description": "Test repo to try out Javascript code examples.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "npx eslint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdaGold/node-example.git"
},
"author": "Ada Developers Academy",
"license": "ISC",
"bugs": {
"url": "https://github.com/AdaGold/node-example/issues"
},
"homepage": "https://github.com/AdaGold/node-example#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@stylistic/eslint-plugin": "^4.2.0",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.0.0",
"jest": "^29.7.0"
},
"dependencies": {
"axios": "^1.8.1"
}
}