-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
60 lines (60 loc) · 1.78 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": "nodebb-plugin-calendar",
"version": "1.3.0",
"description": "Calendar and events for NodeBB",
"main": "build/lib",
"scripts": {
"check": "eslint ./src && tsc -p src/lib --noEmit && tsc -p src/client --noEmit && tsc -p src/calendar --noEmit",
"test": "npm run check",
"compile": "tsc -p src/lib",
"build-dev": "npm run compile && webpack --progress --mode=development",
"build": "npm run compile && webpack --progress --mode=production",
"prepublishOnly": "rm -r ./build && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pitaj/nodebb-plugin-calendar.git"
},
"keywords": [
"nodebb",
"plugin",
"calendar",
"event",
"date"
],
"author": "PitaJ",
"license": "MIT",
"bugs": {
"url": "https://github.com/pitaj/nodebb-plugin-calendar/issues"
},
"homepage": "https://github.com/pitaj/nodebb-plugin-calendar#readme",
"devDependencies": {
"@types/bootstrap": "^3.4.0",
"@types/eonasdan-bootstrap-datetimepicker": "^4.17.29",
"@types/express": "^4.17.16",
"@types/nconf": "^0.10.3",
"@types/node": "^18.11.18",
"@types/validator": "^13.7.11",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"del": "^6.1.1",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"eonasdan-bootstrap-datetimepicker": "^4.17.49",
"fullcalendar": "^3.10.5",
"moment": "^2.29.4",
"source-map-support": "^0.5.21",
"validator": "^13.7.0"
},
"nbbpm": {
"compatibility": "^2.0.0"
}
}