-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"name": "shudu",
"version": "1.0.0",
"description": "Read & write Chinese content in comfortable way.",
"homepage": "https://github.com/JackKuo-tw/shudu#readme",
"main": "index.js",
"scripts": {
"cli": "node index.js",
"server": "node web/bin/www",
"start": "node web/bin/www",
"dev": "nodemon web/bin/www"
},
"author": "JackKuo-tw",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JackKuo-tw/shudu.git"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"opencc": "^1.1.2",
"pug": "^3.0.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"http-errors": "~1.6.3",
"morgan": "~1.9.1"
},
"jshintConfig": {
"esversion": 6
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
}
}