-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "fulltextrssplz",
"version": "1.0.0",
"main": "index.js",
"author": "Wu Haotian <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^8.5.0",
"@tailwindcss/forms": "0.5.3",
"@types/crypto-js": "^4.1.1",
"@types/cypress": "^1.1.3",
"@types/express": "^4.17.17",
"@types/jest": "^27.5.2",
"@types/redis": "2.8.32",
"@types/xml2js": "^0.4.11",
"@whtsky/prettier-config": "^1.0.1",
"autoprefixer": "10.4.14",
"concurrently": "6.5.1",
"cypress": "^12.8.0",
"jest": "^28.1.3",
"postcss": "8.4.21",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"rollup-plugin-generate-html-template": "1.7.0",
"rollup-plugin-postcss": "^4.0.2",
"start-server-and-test": "^1.15.5",
"tailwindcss": "3.2.7",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@postlight/parser": "^2.2.3",
"@sentry/integrations": "^7.29.0",
"@sentry/node": "^7.29.0",
"crypto-js": "^4.1.1",
"express": "^4.18.2",
"feed": "^4.2.2",
"redis": "3.1.2",
"rss-parser": "^3.12.0"
},
"scripts": {
"start": "node src/server.js",
"build": "concurrently \"tsc\" \"rollup -c\"",
"dev": "concurrently \"tsc -w\" \"rollup -c --watch\"",
"test": "jest --coverage",
"gen_key": "ts-node src/scripts/genKey.ts",
"sign": "ts-node src/scripts/sign.ts"
},
"prettier": "@whtsky/prettier-config",
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}