-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.95 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-app-boilerplate",
"version": "0.0.1",
"description": "{{PROJECT_DESCRIPTION}}",
"main": "index.js",
"author": "{{PROJECT_AUTHOR}}",
"license": "MIT",
"private": true,
"scripts": {
"eslint": "eslint www --ext .js",
"eslint:fix": "eslint --fix www/**/*.js",
"stylelint": "stylelint www/**/*.scss",
"stylelint:fix": "stylelint --fix www/**/*.scss",
"prettier-watch": "onchange 'www/**/*.(js|scss)' -- prettier --write {{changed}} --loglevel silent",
"prod": "NODE_ENV=production webpack -p --progress --config webpack.config.prod.js",
"start": "NODE_ENV=development webpack-dev-server --progress --config webpack.config.dev.js & styleguidist server --open",
"start-pretty": "npm start & npm run prettier-watch",
"test": "NODE_ENV=test jest --coverage --watch",
"test:prod": "NODE_ENV=test jest",
"bundle-analyzer": "NODE_ENV=development webpack --progress && bundle-buddy dist/*.map"
},
"keywords": [],
"dependencies": {
"babel-polyfill": "^6.26.0",
"prop-types": "^15.6.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"autoprefixer": "^8.6.4",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bundle-buddy": "^0.2.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^2.0.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"http-proxy": "^1.17.0",
"identity-obj-proxy": "^3.0.0",
"inquirer": "^6.2.0",
"jest": "^22.4.3",
"jest-transform-graphql": "^2.1.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.0",
"onchange": "^3.3.0",
"postcss-loader": "^2.1.5",
"prettier": "^1.12.1",
"react-styleguidist": "^7.1.1",
"react-svg-loader": "^2.1.0",
"sass-loader": "^7.0.3",
"start-server-and-test": "^1.4.1",
"style-loader": "^0.21.0",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.14.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.0",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.4"
}
}