-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.39 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
{
"name": "mercury-extension",
"version": "0.1.0",
"private": true,
"dependencies": {
"@octokit/rest": "15.17.0",
"amplitude-js": "^4.2.1",
"axios": "^0.17.1",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"debounce": "^1.1.0",
"diffparser": "^2.0.1",
"js-base64": "^2.4.3",
"jsonwebtoken": "^8.1.1",
"moment": "^2.20.1",
"parse-link-header": "^1.0.1",
"pjax": "https://github.com/karigari/pjax.git#karigari",
"raven-js": "^3.23.3",
"react": "^16.2.0",
"react-component-octicons": "1.6.0",
"react-dom": "^16.2.0",
"react-markdown": "^3.3.0",
"react-redux": "^5.0.6",
"react-rnd": "^7.4.0",
"react-syntax-highlighter": "^7.0.0",
"redux": "^3.7.2",
"redux-create-reducer": "^1.1.1",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "2.2.0",
"status-indicator": "^1.0.9",
"uuid": "^3.3.2"
},
"config": {
"pack": "public/. -p keys/local_key.pem -o dist/mercury.crx"
},
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"gen-crx": "./node_modules/.bin/crx pack $npm_package_config_pack",
"pack": "npm run build && mkdir -p dist/ && npm run gen-crx",
"test": "TEST=true jest --env=jsdom",
"sentry": "sh scripts/sentry.sh",
"gen-zip": "rm -f bundle.zip && zip -r9 bundle.zip public/* -x *.map",
"chrome-build": "npm run build && npm run gen-zip && npm run sentry"
},
"devDependencies": {
"@babel/cli": "7.1.0",
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@types/chrome": "^0.0.75",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/react-redux": "^6.0.9",
"@types/webpack-env": "^1.13.6",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "8.0.2",
"crx": "^3.2.1",
"css-loader": "1.0.0",
"jest": "^23.6.0",
"jest-mock-axios": "^2.1.11",
"redux-mock-store": "^1.5.1",
"redux-testkit": "^1.0.6",
"style-loader": "0.23.0",
"typescript": "^3.1.6",
"webpack": "4.19.1",
"webpack-cli": "3.1.1",
"webpack-dev-server": "3.1.11",
"webpack-merge": "^4.1.4",
"webpack-shell-plugin": "^0.5.0"
},
"jest": {
"collectCoverage": true
}
}