-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 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
{
"name": "open-kanban",
"version": "1.0.0",
"description": "Distributed Kanban board that stores data in Gun",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"scripts": {
"build": "rimraf dist/ && webpack --mode production",
"dev": "rimraf dist/ && webpack --mode development --watch",
"server": "node ./server.js",
"start": "http-server --port 3000 contentBase dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/estebanrfp/open-kanban.git"
},
"keywords": [
"gun",
"kanban",
"task",
"board",
"javascript",
"typescript",
"distributed",
"encrypted"
],
"author": "Esteban Fuster Pozzi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/estebanrfp/open-kanban/issues"
},
"homepage": "https://github.com/estebanrfp/open-kanban#readme",
"devDependencies": {
"autoprefixer": "10.3.7",
"compression-webpack-plugin": "^9.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "6.4.0",
"css-minimizer-webpack-plugin": "3.1.1",
"es6-promise": "^4.2.8",
"eslint": "8.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "^5.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "5.3.2",
"mini-css-extract-plugin": "2.4.2",
"nodemon": "^2.0.13",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"rimraf": "^3.0.2",
"ts-loader": "9.2.6",
"typescript": "4.4.4",
"webpack": "5.58.1",
"webpack-cli": "4.9.0",
"workbox-webpack-plugin": "6.3.0"
},
"dependencies": {
"gun": "^0.2020.1235",
"marked": "3.0.7",
"turndown": "7.1.1"
}
}