-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "spoiler-blocker",
"version": "0.2.3",
"description": "A browser extension that blocks spoilers on your Facebook and Twitter feed.",
"main": "index.js",
"scripts": {
"prod": "webpack --config webpack.prod.config.js --progress",
"dev": "webpack --config webpack.dev.config.js --debug --output-pathinfo --watch --progress",
"start": "webpack-dev-server --config webpack.devserver.config.js",
"stats": "webpack --config webpack.prod.config.js --json > stats.json"
},
"author": "kabir-plod",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/kabir-plod/spoiler-blocker.git"
},
"dependencies": {
"@blueprintjs/core": "^1.8.0",
"jquery": "^3.1.1",
"mobx": "^3.1.0",
"mobx-react": "^4.1.0",
"mutation-summary": "^0.1.1",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.1",
"react-dom": "^15.4.1",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.7",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.15.0",
"eslint-plugin-react": "^6.7.1",
"html-webpack-plugin": "^2.24.1",
"mobx-react-devtools": "^4.2.11",
"webpack": "^2.2.1",
"webpack-dev-server": "^1.16.2"
}
}