forked from johreh/gloomycompanion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "gloomycompanion",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/johreh/gloomycompanion",
"author": "johreh <[email protected]>",
"private": true,
"scripts": {
"build:dev": "webpack -d",
"build:prod": "NODE_ENV=production webpack -p",
"lint": "eslint --ext js,jsx .",
"lintsass": "sass-lint -v style/*.scss",
"serve": "WEBPACK_SERVE=1 webpack-serve"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.8.3",
"postcss-loader": "^3.0.0",
"sass-lint": "^1.12.1",
"sass-loader": "^7.0.1",
"style-loader": "^1.0.0",
"svg-url-loader": "^3.0.0",
"url-loader": "^2.1.0",
"webpack": "^4.2.0",
"webpack-cli": "^3.3.7",
"webpack-serve": "^0.3.0"
},
"dependencies": {
"base-58": "^0.0.1",
"classnames": "^2.2.5",
"firebase": "^6.4.1",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-hot-loader": "^4.1.1"
}
}