-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "revprod-landing-page",
"version": "3.0.0",
"description": "Landing page of the website for The Revolutionary Product",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/MediaComem/revprod-landing-page.git"
},
"keywords": [
"revolutionary",
"product"
],
"author": "Simon Oulevay <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MediaComem/revprod-landing-page/issues"
},
"homepage": "https://github.com/MediaComem/revprod-landing-page#readme",
"type": "module",
"scripts": {
"dev": "nodemon",
"doctoc": "doctoc --github README.md",
"format": "prettier --check .",
"format:write": "prettier --write .",
"start": "node ./bin.js",
"test": "npm run format"
},
"dependencies": {
"chalk": "^5.3.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"lodash-es": "^4.17.21",
"log4js": "^6.3.0"
},
"devDependencies": {
"doctoc": "^2.1.0",
"dotenv": "^16.4.5",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
},
"engines": {
"node": "^22.0.0"
}
}