-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dcit-web-calendar",
"version": "0.0.0",
"description": "Developer Conferences In Taiwan",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"lint": "npm run lint:ts && npm run lint:css",
"lint:ts": "next lint",
"lint:css": "stylelint \"**/*.css\"",
"lint:fix": "next lint --fix && stylelint \"**/*.css\" --fix",
"postbuild": "next-sitemap --config ./next-sitemap.config.mjs && npm run rss",
"rss": "node ./lib/generateRSS.mjs > ./out/rss.xml",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IvanWei/dcit-web-calendar.git"
},
"keywords": [
"dcit",
"developer",
"calendar",
"conference",
"taiwan",
"行事曆"
],
"author": "Wei Hong-Lin <scorpionseed@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/IvanWei/dcit-web-calendar/issues"
},
"homepage": "https://github.com/IvanWei/dcit-web-calendar#readme",
"devDependencies": {
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"stylelint": "^15.8.0",
"stylelint-config-recommended": "^12.0.0",
"stylelint-prettier": "^3.0.0",
"typescript": "5.1.3"
},
"dependencies": {
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"feed": "^4.2.2",
"next": "^13.4.6",
"next-sitemap": "^4.1.3",
"react": "^18.2.0",
"react-big-calendar": "^1.8.1",
"react-dom": "^18.2.0",
"sharp": "^0.32.1",
"sweetalert2": "^11.7.12",
"sweetalert2-react-content": "^5.0.7"
}
}