forked from probot/smee.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.62 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-server",
"version": "0.0.3",
"description": "",
"author": "Jason Etcovitch <[email protected]> (https://github.com/JasonEtco)",
"license": "ISC",
"repository": "https://github.com/probot/smee.git",
"scripts": {
"start": "node ./index.js",
"start-dev": "concurrently \"nodemon --ignore src/ ./index.js\" \"webpack -w\"",
"build": "webpack -p",
"test": "jest --coverage && eslint '**/*.js'",
"test:update": "jest -u",
"postinstall": "npm run build"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@githubprimer/octicons-react": "^8.2.0",
"autoprefixer": "^7.1.6",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.4",
"connect-sse": "^1.2.0",
"copy-to-clipboard": "^3.0.8",
"copy-webpack-plugin": "^4.2.0",
"crypto": "^1.0.1",
"css-loader": "^1.0.0",
"eventsource": "^1.0.5",
"express": "^4.16.2",
"express-sslify": "^1.2.0",
"get-value": "^2.0.6",
"glob-all": "^3.1.0",
"helmet": "^3.9.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"moment": "^2.19.1",
"moment-timezone": "^0.5.14",
"node-sass": "^4.5.3",
"postcss-loader": "^3.0.0",
"primer-css": "^9.6.0",
"prop-types": "^15.6.0",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"raven": "^2.6.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-json-view": "^1.13.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"concurrently": "^3.5.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"nock": "^10.0.6",
"nodemon": "^1.12.1",
"raf": "^3.4.0",
"smee-client": "^1.1.0",
"supertest": "^3.0.0"
},
"engines": {
"node": "10.x.x"
},
"jest": {
"setupFiles": [
"./tests/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testURL": "https://smee.io/CHANNEL"
},
"standard": {
"env": [
"jest"
]
}
}