-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.67 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.67 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
{
"name": "pulse-boilerplate",
"version": "1.1.0",
"description": "React based boilerplate for creating scalable and well documented Design Systems.",
"main": "src/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --mode development --inline --hot --progress --config webpack/webpack.config.babel.js",
"guide": "cross-env NODE_ENV=development webpack-dev-server --mode development --inline --hot --progress --config webpack/webpack.config.guide.babel.js",
"build": "cross-env NODE_ENV=production webpack --mode production --progress --config webpack/webpack.config.babel.js",
"guide:build": "cross-env NODE_ENV=production webpack --mode production --progress --config webpack/webpack.config.guide.babel.js",
"eslint": "eslint src styleguide webpack",
"staged": "node_modules/.bin/lint-staged"
},
"author": "Heartbeat agency",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@hot-loader/react-dom": "^16.8.6",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-react-docgen": "^3.1.0",
"babel-plugin-styled-components": "^1.10.0",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"mini-css-extract-plugin": "^0.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@mdx-js/loader": "^1.1.0",
"@mdx-js/react": "^1.0.27",
"clean-tag": "2.0.3",
"lodash": "^4.17.15",
"path-parse": "^1.0.6",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-highlight": "^0.12.0",
"react-hot-loader": "^4.12.8",
"react-live": "^2.1.2",
"react-router-dom": "^5.0.1",
"styled-components": "^4.2.0",
"styled-system": "^4.2.2"
}
}