-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 781 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 781 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
37
{
"main": "dist/client/index.js",
"name": "vouched-rest-nodejs",
"version": "0.0.12",
"license": "Apache-2.0",
"author": "John Cao",
"private": true,
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"./dist"
],
"coverageReporters": [
"html",
"lcov"
]
},
"scripts": {
"test": "jest -i --runInBand "
},
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.17.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.26.8",
"@babel/preset-env": "^7.7.1",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettier": "^3.5.0"
}
}