-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.91 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
96
97
98
{
"name": "@labset/confluence-static-site",
"version": "2.3.0",
"description": "confluence static site",
"bin": {
"confsite": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"postbuild": "./postbuild.js",
"postinstall": "./postinstall.js",
"lint": "eslint modules/ --ext .ts,.tsx,.js",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"wdio": "TS_NODE_PROJECT=test/tsconfig.json wdio run wdio.conf.ts",
"cli": "NODE_ENV=development ts-node modules/cli/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viqueen/confluence-static-site.git"
},
"keywords": [
"confluence",
"static",
"site"
],
"files": [
"dist",
"postinstall.js",
"yarn.lock"
],
"author": "Hasnae R.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/viqueen/confluence-static-site/issues"
},
"homepage": "https://github.com/viqueen/confluence-static-site#readme",
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.14.2",
"@types/prompt": "^1.1.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@wdio/cli": "^8.29.7",
"@wdio/local-runner": "^8.29.7",
"@wdio/mocha-framework": "^8.29.3",
"@wdio/spec-reporter": "^8.29.7",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-license-notice": "^1.0.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"wdio-image-comparison-service": "^5.0.2"
},
"dependencies": {
"@atlaskit/app-provider": "^1.3.3",
"@atlaskit/atlassian-navigation": "^3.6.2",
"@atlaskit/breadcrumbs": "^12.2.3",
"@atlaskit/css-reset": "^6.9.1",
"@atlaskit/date": "^0.10.10",
"@atlaskit/link-provider": "^1.12.2",
"@atlaskit/media-core": "^34.2.1",
"@atlaskit/media-state": "^1.1.0",
"@atlaskit/page": "^12.4.0",
"@atlaskit/page-layout": "^3.4.4",
"@atlaskit/renderer": "^109.35.0",
"@atlaskit/side-navigation": "^3.3.4",
"@atlaskit/smart-card": "^30.1.1",
"@atlaskit/theme": "^12.8.0",
"@atlaskit/tokens": "^1.52.0",
"@labset/fs-directory": "^1.1.0",
"axios": "^1.6.7",
"copy-webpack-plugin": "^12.0.2",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.10.0",
"dotenv": "^16.4.1",
"html-webpack-plugin": "^5.6.0",
"lodash": "^4.17.21",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"prompt": "^1.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.32.1",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.4",
"url": "^0.11.3",
"webpack": "^5.85.1",
"webpack-dev-server": "^4.15.1",
"yet-another-react-lightbox": "^3.17.0"
}
}