-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "c2w-lambda-api-dashboard",
"version": "1.0.0",
"description": "Cycle2work dashboard API",
"main": "bundle/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cycle2work/c2w-lambda-api-dashboard"
},
"dependencies": {
"bunyan": "^1.8.14",
"core-js": "^3.6.5",
"moment": "^2.27.0",
"mongodb": "^3.5.9",
"regenerator-runtime": "^0.13.6"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"codecov": "^3.8.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"scripts": {
"build": "babel src --out-dir bundle",
"codecov": "yarn coverage && codecov",
"coverage": "jest --coverage",
"test": "jest",
"dev": "jest --watch",
"lint": "eslint src"
},
"jest": {
"verbose": true
}
}