-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "react-boilerplate",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --compress --open --mode development --hot",
"build": "webpack --mode production",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasjs/react-boilerplate.git"
},
"keywords": [
"react"
],
"author": "Lucas JS",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucasjs/react-boilerplate/issues"
},
"homepage": "https://github.com/lucasjs/react-boilerplate#readme",
"dependencies": {
"@hot-loader/react-dom": "^16.8.6",
"babel-cli": "^6.26.0",
"babel-preset-react-app": "^9.1.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.14"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-a11y": "^5.2.1",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-backgrounds": "^5.2.1",
"@storybook/addons": "^5.1.11",
"@storybook/react": "^5.2.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-loader": "^4.0.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"style-loader": "^1.0.0",
"stylelint": "^13.3.3",
"stylelint-order": "^4.0.0",
"stylelint-webpack-plugin": "^1.0.1",
"url-loader": "^4.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
}
}