forked from schneidmaster/gitreports.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.84 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.84 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
{
"name": "gitreports.com",
"version": "1.0.0",
"description": "Git Reports is a free service that lets you set up a stable URL for anonymous users to submit bugs and other Issues to your GitHub repositories.",
"main": "index.js",
"repository": "git+https://github.com/schneidmaster/gitreports.com.git",
"author": "Zach Schneider <zach@schneid.io>",
"license": "MIT",
"scripts": {
"start": "npm run dev",
"dev": "TARGET=development webpack-dev-server --config config/webpack.babel.js",
"build": "webpack --bail --config config/webpack.babel.js",
"heroku-postbuild": "TARGET=production npm run build",
"analyze": "TARGET=production BUNDLE_ANALYZE=true npm run build",
"lint": "eslint 'app/assets/javascripts/*.js' 'config/**/*.js'"
},
"dependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"bootstrap": "^3.3.2",
"clean-webpack-plugin": "^0.1.16",
"compression-webpack-plugin": "^1.0.0",
"core-js": "^2.4.0",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"postcss-loader": "^2.0.6",
"postcss-nested": "^2.0.4",
"rails-ujs": "^5.1.2",
"stats-webpack-plugin": "^0.6.1",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-bundle-analyzer": "^2.8.3",
"webpack-dev-server": "^2.6.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-aha": "^0.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.3.1"
}
}