-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 2.3 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
{
"name": "chtijs-website",
"version": "0.0.1",
"description": "The ChtiJS Website",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && touch out/.nojekyll && echo 'chtijs.francejs.org' > out/CNAME",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"prepare": "husky install"
},
"dependencies": {
"@extractus/feed-extractor": "^7.0.8",
"@octokit/rest": "^20.0.2",
"@types/lunr": "^2.3.7",
"@types/node": "^18.11.9",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.16",
"front-matter": "^4.0.2",
"lunr": "^2.3.9",
"next": "14.0.3",
"node-html-markdown": "^1.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark-parse": "^11.0.0",
"swr": "^2.2.4",
"typescript": "5.3.2",
"unified": "^11.0.4",
"yerror": "^6.2.1"
},
"homepage": "https://chtijs.francejs.org",
"repository": {
"type": "git",
"url": "git://github.com/chtijs/chtijs.francejs.org"
},
"bugs": {
"url": "https://github.com/chtijs/chtijs.francejs.org/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/chtijs/chtijs.francejs.org/blob/master/LICENSE"
}
],
"author": {
"name": "The ChtiJS members - Nord Pas de Calais - France",
"url": "https://chtijs.francejs.org"
},
"license": "MIT",
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"parserOptions": {
"sourceType": "script",
"modules": true
},
"env": {
"es6": true,
"node": true,
"jest": true,
"mocha": true
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
},
"prettier": {
"semi": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.1.0",
"sass": "^1.69.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}