-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 loc) · 2.81 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "romcal-api",
"version": "1.2.0",
"description": "REST API to get the liturgical calendar in the Catholic Roman rite.",
"main": "dist/src/main.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "webpack-cli --config webpack.config.js",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node_modules/.bin/nodemon --config nodemon.json",
"start:prod": "node dist/src/main",
"offline": "npm run build && sls offline start",
"lint": "eslint '{src,apps,libs,test}/**/*.ts' --fix",
"apidoc": "npx apidoc -i src/ -o docs",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"async-middleware": "^1.2.1",
"express": "^4.16.4",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"romcal": "1.3.1-alpha.5",
"serverless-http": "^2.3.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.40",
"@types/aws-serverless-express": "^3.3.3",
"@types/express": "^4.17.2",
"@types/jest": "25.1.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.6",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"apidoc": "^0.20.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^4.0.3",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.18.2",
"serverless-offline": "^5.12.1",
"serverless-webpack": "^5.3.1",
"supertest": "^4.0.2",
"ts-jest": "25.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romcal/romcal-api.git"
},
"author": {
"name": "Etienne Magnier",
"email": "etienne.magnier@gmail.com",
"url": "https://github.com/emagnier"
},
"license": "MIT",
"keywords": [
"api",
"roman",
"catholic",
"calendar",
"latin",
"western",
"church",
"christian",
"seasons",
"liturgical"
]
}