-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.52 KB
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
{
"name": "smee.io",
"private": true,
"type": "module",
"sideEffects": [
"*.scss"
],
"description": "Receives payloads then sends them to your locally running application.",
"author": "Jason Etcovitch <[email protected]> (https://github.com/JasonEtco)",
"license": "ISC",
"repository": "github:probot/smee.io",
"scripts": {
"start": "node ./index.js",
"start-dev": "concurrently \"nodemon --ignore src/ ./index.js\" \"webpack -w --mode development\"",
"build": "webpack",
"lint": "eslint",
"lint:fix": "eslint --fix",
"redis:start": "docker run -d -p 6379:6379 --name probot-redis --rm redis",
"redis:stop": "docker stop probot-redis",
"test": "jest --coverage && eslint '**/*.js'",
"test:update": "jest -u"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/helmet": "^13.0.1",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"@sentry/node": "^10.1.0",
"dotenv": "^17.2.1",
"eventsource": "^4.0.0",
"fastify": "^5.4.0",
"ioredis": "^5.3.2"
},
"devDependencies": {
"@microlink/react-json-view": "^1.23.1",
"@primer/css": "^22.0.0",
"@primer/octicons-react": "^19.11.0",
"@primer/primitives": "^11.0.0",
"@primer/view-components": "^0.43.6",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"autoprefixer": "^10.4.19",
"compression-webpack-plugin": "^11.1.0",
"concurrently": "^9.0.0",
"copy-to-clipboard": "^3.3.3",
"css-loader": "^7.1.2",
"esbuild-loader": "^4.3.0",
"eslint": "^9.0.0",
"get-value": "^4.0.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"neostandard": "^0.12.2",
"nock": "^14.0.0-beta.8",
"nodemon": "^3.0.0",
"postcss": "^8.4.39",
"postcss-loader": "^8.0.0",
"purgecss-webpack-plugin": "^7.0.2",
"raf": "^3.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"smee-client": "^4.0.0",
"style-loader": "^4.0.0",
"supertest": "^7.0.0",
"tinyglobby": "^0.2.14",
"webpack": "^5.0.0",
"webpack-bundle-analyzer": "^5.0.0",
"webpack-cli": "^6.0.0"
},
"engines": {
"node": ">=18"
},
"jest": {
"globalSetup": "./tests/global-setup.js",
"setupFiles": [
"./tests/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testEnvironmentOptions": {
"url": "https://smee.io/CHANNEL"
}
},
"standard": {
"env": [
"jest"
]
}
}