-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-todo-app",
"version": "1.0.0",
"homepage": "http://Sensational-Code.github.io/react-todo-app",
"description": "",
"main": "webpack.config.js",
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack-cli": "^2.0.9"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.3.13",
"bundlesize": "^0.16.0",
"css-loader": "^1.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"style-loader": "^0.21.0",
"webpack": "^4.0.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^3.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress",
"dev": "webpack-dev-server --progress --content-base dist --colors --inline",
"linter": "eslint --ext .js --ext .jsx src",
"test": "NODE_ENV=test jest --no-cache",
"bundlesize": "bundlesize",
"precommit": "eslint src --quiet",
"prepush": "npm run test",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR"
],
"bundlesize": [
{
"path": "./dist/js/app.bundle.js",
"maxSize": "170 kB"
},
{
"path": "./dist/js/lib.bundle.js",
"maxSize": "110 kB"
}
],
"jest": {
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>/tests/setup.js"
},
"author": "Sensational-Code",
"license": ""
}