-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.61 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
{
"name": "react-flaggables",
"version": "0.0.1",
"description": "Provides a set of components for creating lists of flagged items",
"main": "index.js",
"scripts": {
"coverage": "jest --coverage",
"test": "jest",
"build": "cross-env BABEL_ENV=production webpack --config webpack.prod.js",
"start": "cross-env BABEL_ENV=development webpack-dev-server --host 0.0.0.0 --config ./webpack.dev.js"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-react-jsx-source": "^7.5.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^1.10.6",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"jest": "^24.7.1",
"jest-environment-jsdom-global": "^1.2.0",
"jest-junit": "^6.3.0",
"terser-webpack-plugin": "^1.2.4",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"prop-types": "^15.7.2"
}
}