-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 940 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
{
"name": "nodejs-deploy",
"version": "1.0.0",
"description": "A simple Node.js application",
"main": "src/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "babel src -d dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aparnajyothi-y/nodejs-deploy.git",
"packageManager": "[email protected]"
},
"dependencies": {
"express": "^4.18.2",
"@fortawesome/fontawesome-common-types": "^6.5.1",
"@fortawesome/fontawesome-svg-core": "^6.5.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/cli": "^7.21.0",
"@babel/preset-env": "^7.21.0",
"jest": "^27.0.0"
},
"jest": {
"testMatch": ["**/tests/**/*.[jt]s?(x)"]
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aparnajyothi-y/nodejs-deploy/issues"
},
"homepage": "https://github.com/aparnajyothi-y/nodejs-deploy#readme"
}