forked from probot/smee.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.67 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
{
"name": "smee.io",
"private": true,
"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 -p",
"test": "jest --coverage && eslint '**/*.js'",
"test:update": "jest -u",
"postinstall": "npm run build"
},
"dependencies": {
"@primer/css": "^14.3.0",
"@primer/octicons-react": "^9.6.0",
"connect-sse": "^1.2.0",
"copy-to-clipboard": "^3.3.1",
"cors": "^2.8.5",
"date-fns": "^2.12.0",
"dotenv": "^8.2.0",
"eventsource": "^1.0.7",
"express": "^4.17.1",
"express-sslify": "^1.2.0",
"get-value": "^3.0.1",
"helmet": "^3.22.0",
"ioredis": "^4.16.3",
"prop-types": "^15.7.2",
"raven": "^2.6.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-json-view": "^1.19.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.6",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"glob-all": "^3.2.1",
"html-webpack-plugin": "^4.3.0",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^0.9.0",
"nock": "^12.0.3",
"node-sass": "^4.14.0",
"nodemon": "^2.0.3",
"postcss-loader": "^3.0.0",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"raf": "^3.4.1",
"sass-loader": "^8.0.2",
"smee-client": "^1.1.0",
"style-loader": "^1.2.1",
"supertest": "^4.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"engines": {
"node": "12.x.x"
},
"jest": {
"globalSetup": "./tests/global-setup.js",
"setupFiles": [
"./tests/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testURL": "https://smee.io/CHANNEL"
},
"standard": {
"env": [
"jest"
]
}
}