-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "revprod-backend",
"version": "3.0.0",
"description": "Backend of the website for The Revolutionary Product",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MediaComem/revprod-backend.git"
},
"author": "Simon Oulevay <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MediaComem/revprod-backend/issues"
},
"homepage": "https://github.com/MediaComem/revprod-backend#readme",
"type": "module",
"scripts": {
"check": "npm run lint && npm run format",
"check:write": "npm run lint:write && npm run format:write",
"clean": "del db.json",
"dev": "nodemon",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint --max-warnings 0",
"lint:write": "eslint --max-warnings 0",
"start": "node ./bin.js"
},
"dependencies": {
"ajv": "^8.6.3",
"ajv-errors": "^3.0.0",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"fast-glob": "^3.2.7",
"http-errors": "^2.0.0",
"lodash-es": "^4.17.21",
"log4js": "^6.3.0",
"luxon": "^3.5.0",
"pug": "^3.0.2",
"uuid": "^11.0.2"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@prettier/plugin-pug": "^3.2.0",
"del-cli": "^6.0.0",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.12.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
},
"engines": {
"node": "^22.0.0"
}
}