-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
81 lines (81 loc) · 2.47 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
{
"name": "just-news",
"description": "just news",
"version": "1.0.0",
"author": {
"name": "JongChan Choi",
"url": "https://github.com/disjukr"
},
"contributors": [
{
"name": "ChaYoung You",
"url": "https://github.com/yous"
}
],
"scripts": {
"dev": "run-p dev:webpack serve",
"dev:webpack": "cross-env NODE_ENV=development pnpm webpack:userscript -- --watch",
"build": "cross-env NODE_ENV=production pnpm webpack:userscript",
"build:dev": "cross-env NODE_ENV=development pnpm webpack:userscript",
"test": "pnpm ts-node ./src/test/index.ts",
"test:health-check": "run-s webpack:health-check test:health-check:node",
"test:health-check:node": "pnpm ts-node ./src/test/health-check/index.ts",
"webpack:userscript": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config ./dev/userscript.webpack.config.ts --require @swc-node/register",
"webpack:health-check": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config ./dev/health-check.webpack.config.ts --require @swc-node/register",
"ts-node": "node -r @swc-node/register",
"serve": "serve ./dist"
},
"repository": {
"type": "git",
"url": "https://github.com/disjukr/just-news.git"
},
"bugs": {
"url": "https://github.com/disjukr/just-news/issues"
},
"license": "MIT",
"main": "just-news.user.js",
"keywords": [
"just",
"news",
"userscript"
],
"engines": {
"node": ">= 17"
},
"dependencies": {
"clipboard": "^2.0.4",
"jquery": "^3.5.0",
"preact": "^10.0.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@swc-node/register": "^1.4.0",
"@types/clipboard": "^2.0.1",
"@types/jquery": "^3.3.31",
"@types/node": "^9.6.50",
"@types/puppeteer": "^1.19.1",
"@types/showdown": "^1.9.3",
"@types/terser-webpack-plugin": "^1.2.1",
"@types/webpack": "^4.32.1",
"babel-loader": "^8.0.6",
"babel-plugin-macros": "^2.6.1",
"codegen.macro": "^3.0.0",
"core-js": "^2.6.9",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"linaria": "^1.3.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"puppeteer": "^11.0.0",
"serve": "^11.1.0",
"showdown": "^1.9.1",
"terser-webpack-plugin": "^1.4.1",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-command": "^0.5.1"
},
"private": true
}