-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.07 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
{
"name": "@smartbear/fake-ap",
"version": "3.0.0",
"description": "A fake AP module to help develop and test Atlassian Connect applications.",
"homepage": "https://github.com/SmartBear/fake-ap",
"repository": {
"type": "git",
"url": "https://github.com/SmartBear/fake-ap"
},
"main": "lib/index.js",
"author": "SmartBear Software",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"start": "webpack serve",
"lint": "eslint --ext js,jsx .",
"test": "jest",
"release": "node scripts/release.js",
"prepack": "rm -rf lib && babel src --out-dir lib",
"postpack": "rm -rf lib",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.26.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.0",
"babel-loader": "^9.2.1",
"babel-plugin-module-resolver": "^5.0.2",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.2",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"process": "^0.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"semver": "^7.6.3",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.11",
"url": "^0.11.4",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"atlassian-jwt": "^2.0.3",
"axios": "^1.7.9",
"http-status-codes": "^2.3.0",
"signals": "^1.0.0"
},
"peerDependencies": {
"react": ">=16.8.0 <19.0.0",
"react-dom": ">=16.8.0 <19.0.0",
"styled-components": ">=3.0.0 <6.0.0"
}
}