-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
95 lines (95 loc) · 2.53 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
{
"name": "discuss",
"version": "1.2.9",
"description": "一款简单,安全,免费的评论系统 | A simple, safe, free comment system",
"main": "index.js",
"unpkg": "dist/discuss.js",
"jsdelivr": "dist/discuss.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup -c",
"start:client": "rollup -c -w",
"start:server": "node ./start.js",
"start:server:hot": "nodemon ./start.js",
"prepare": "husky install",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint --fix src && prettier --check --write src"
},
"keywords": [
"discuss",
"comments",
"concise",
"vue"
],
"exports": {
".": "./index.js",
"./server": "./index.js",
"./client": "./dist/discuss.js",
"./client-admin": "./dist/discuss.admin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/discussjs/discuss"
},
"license": "MIT",
"author": {
"name": "Lete114",
"url": "https://www.imlete.cn"
},
"dependencies": {
"@cloudbase/node-sdk": "^2.9.1",
"akismet-api": "^5.2.1",
"axios": "^0.22.0",
"bcryptjs": "^2.4.3",
"body-data": "^1.0.5",
"dotenv": "^10.0.0",
"get-user-ip": "^1.0.0",
"html-minifier": "^4.0.0",
"jsdom": "^19.0.0",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"min-1px": "^1.0.0",
"mongodb": "^4.8.0",
"msg-alert": "^1.0.0-beta.4",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.0",
"output-line": "^1.0.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.3",
"simple-unique": "^1.2.0",
"sqlite3": "^5.0.10",
"xss": "^1.0.10"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"eslint": "^8.15.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"node-sass": "^7.0.1",
"nodemon": "^2.0.15",
"postcss": "^8.4.13",
"postcss-preset-env": "^7.1.0",
"prettier": "^2.6.2",
"rollup": "^2.3.4",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-svelte-svg": "^1.0.0-beta.6",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.51.0",
"svelte": "^3.0.0",
"svelte-preprocess": "^4.10.6"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"lint-staged": {
"src/**": "npm run lint:fix"
}
}