-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"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": {
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mime-types": "^2.1.21",
"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.6.2",
"@babel/preset-env": "^7.7.1",
"@types/node": "^12.12.7",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-prettier": "^3.1.1",
"jest": "~24.9.0",
"jest-cli": "^24.9.0",
"prettier": "^1.19.1"
}
}