-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "@originalfunko/brickie",
"version": "1.0.0",
"description": "responsive masonry layout engine for react",
"author": "greg archer <[email protected]> (https://www.funko.com/)",
"license": "MPL-2.0",
"homepage": "https://github.com/OriginalFunko/brickie",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/OriginalFunko/brickie.git"
},
"peerDependencies": {
"react": ">15"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"resize-observer-polyfill": "^1.5.1"
},
"scripts": {
"lint": "eslint",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --mode development"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.0.4",
"webpack-dev-server": "^3.7.2"
}
}