-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "rest-api-with-fastify-example",
"exports": "./index.js",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"start": "node index.js",
"dev:link": "ROMCAL_ALIAS=\"../${ROMCAL_ALIAS:-romcal}\" bash ../scripts/link.sh",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha",
"test:ui": "cypress run",
"build": "exit 0"
},
"dependencies": {
"@romcal/calendar.france": "3.0.0-dev.116",
"@romcal/calendar.general-roman": "3.0.0-dev.116",
"fastify": "^5.3.3",
"romcal": "3.0.0-dev.116"
},
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.27.1",
"@eslint/js": "^9.27.0",
"chai": "^5.2.0",
"chai-http": "^5.1.2",
"cypress": "^15.6.0",
"eslint": "^9.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-cypress": "^4.3.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^11.0.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-unicorn": "^59.0.1",
"globals": "^16.1.0",
"mocha": "^11.4.0",
"prettier": "^3.5.3"
}
}