forked from pitaj/nodebb-plugin-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.95 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
{
"name": "nodebb-plugin-calendar",
"version": "1.1.2",
"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": "npm run compile && webpack --progress --mode=development && node ../nodebb/nodebb build -d",
"build-production": "npm run compile && webpack --progress --mode=production",
"prepublishOnly": "rm -r ./build && npm run build-production && 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.27",
"@types/express": "^4.17.11",
"@types/nconf": "^0.10.0",
"@types/node": "^14.14.33",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.35",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"chalk": "^4.1.0",
"del": "^6.0.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.17",
"typescript": "^4.2.3",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"eonasdan-bootstrap-datetimepicker": "^4.17.49",
"fullcalendar": "^3.10.2",
"moment": "^2.29.1",
"source-map-support": "^0.5.19",
"validator": "^13.5.2"
},
"nbbpm": {
"compatibility": "~1.15.0 || ~1.16.0 || ~1.17.0"
}
}