-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "changelog-generator",
"version": "1.3.6",
"private": true,
"description": "A simple way to create and maintain a changelog",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "eslint --ext .jsx,.js .",
"publish": "npm run export && cp out/index.html out/200.html"
},
"keywords": [
"changelog",
"generator"
],
"author": "Dídac García (https://didaquis.github.io/)",
"repository": {
"type": "git",
"url": "https://github.com/didaquis/changelog-generator.git"
},
"license": "MIT",
"dependencies": {
"eslint-config-next": "^13.0.0",
"md5": "^2.3.0",
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-standard": "^5.0.0"
}
}