-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
38 lines (38 loc) · 861 Bytes
/
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
{
"name": "nodejs-demo-app",
"version": "1.0.0",
"description": "this is a nodejs demo app",
"type": "module",
"main": "app.js",
"scripts": {
"start": "babel-node ./app.js",
"test": "jest",
"build": "echo Test build completed! No package was uploaded"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YannMjl/nodejs-demo-app.git"
},
"keywords": [
"node",
"nodejs",
"express",
"babel"
],
"author": "Yann Mulonda",
"license": "ISC",
"bugs": {
"url": "https://github.com/YannMjl/nodejs-demo-app/issues"
},
"homepage": "https://github.com/YannMjl/nodejs-demo-app#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset": "^1.1.7",
"babel-preset-env": "^0.0.0",
"express": "^4.17.1",
"jest": "^27.0.3"
},
"engines": {
"node": "14.x"
}
}