-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 2.64 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
{
"name": "linkdash",
"version": "0.0.7",
"description": "Generate a handy dashboard of links in seconds.",
"keywords": [
"urls",
"dashboard",
"browser",
"generator",
"links",
"collection",
"cli"
],
"bin": {
"linkdash": "./lib/bin.js"
},
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"scripts": {
"build:chmodbin": "chmod +x lib/bin.js",
"build:lib": "rm -rf lib && tsc -p tsconfig.lib.json && chmod +x ./lib/bin.js",
"build:template": "webpack --config webpack/webpack.prod.js",
"build": "yarn clean && yarn build:template && yarn build:lib && yarn build:chmodbin",
"clean": "rm -rf build; rm -rf lib;",
"dev:server": "json-server --watch src/fake.json --port 1337",
"dev": "LOAD_DEMO_CONFIG=1 webpack serve --config webpack/webpack.common.js",
"update": "ncu -u",
"prepublishOnly": "yarn test && yarn build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/macouella/linkdash"
},
"author": "macouella",
"license": "MIT",
"homepage": "https://github.com/macouella/linkdash#readme",
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.1",
"jsesc": "^3.0.2",
"open": "^7.3.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/classnames": "^2.2.11",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/jest": "^26.0.19",
"@types/jsesc": "^2.5.1",
"@types/querystringify": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.2.2",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.17.0",
"eslint-config-jnprt": "^0.0.15",
"eslint-config-prettier": "^7.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-beta.1",
"jest": "^26.6.3",
"json-server": "^0.16.3",
"match-sorter": "^6.1.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"npm-check-updates": "^10.2.5",
"preact": "^10.5.8",
"prettier": "^2.2.1",
"querystringify": "^2.2.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.7.3"
}
}