-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 2.71 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
96
97
98
99
100
101
{
"name": "paperboard",
"version": "0.0.1",
"productName": "Paperboard",
"description": "A CLI application for managing a reading list of bookmarks from the Internet.",
"repository": "majidsajadi/paperboard",
"license": "MIT",
"author": {
"name": "Majid Sajadi",
"email": "[email protected]",
"url": "https://github.com/majidsajadi"
},
"bin": {
"paperboard": "index.js",
"pprbrd": "index.js"
},
"engines": {
"node": ">=6"
},
"files": [
"src",
"index.js"
],
"keywords": [
"bookmark",
"cli",
"app",
"console",
"manager",
"readability"
],
"scripts": {
"build:client": "webpack",
"dev:server": "nodemon --no-warnings --quiet --watch ./src --ignore ./src/client ./src/server.dev.js",
"dev:client": "webpack serve",
"dev": "concurrently -p \"[{name}]\" -n \"SERVER,CLIENT\" -c \"blue,green\" \"npm:dev:server\" \"npm:dev:client\"",
"prettier": "prettier ./src --write",
"lint": "eslint ./src --fix"
},
"dependencies": {
"@mozilla/readability": "^0.3.0",
"@reduxjs/toolkit": "^1.5.0",
"antd": "^4.9.2",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"commander": "^5.1.0",
"cors": "^2.8.5",
"dayjs": "^1.8.27",
"ejs": "^3.1.5",
"express": "^4.17.1",
"joi": "^17.2.1",
"jsdom": "^16.2.2",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"moment": "^2.29.1",
"open": "^7.3.0",
"ora": "^5.1.0",
"qs": "^6.9.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"reading-time": "^1.2.0",
"redux": "^4.0.5",
"sequelize": "^5.21.10",
"signale": "^1.4.0",
"sqlite3": "^4.2.0",
"transformobject": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.5.0",
"nodemon": "^2.0.4",
"prettier": "^2.2.1",
"react-refresh": "^0.9.0",
"style-loader": "^2.0.0",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}