-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
44
45
46
{
"name": "example-project",
"version": "1.0.0",
"description": "An example project to demonstrate package.json with dependencies",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/user/example-project.git"
},
"keywords": [
"example",
"project",
"dependencies"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/user/example-project/issues"
},
"homepage": "https://github.com/user/example-project#readme",
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.21",
"axios": "^0.21.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"jest": "^27.0.6",
"nodemon": "^2.0.12"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}