-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.86 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "bilyeli",
"version": "0.0.3",
"description": "Simple react webpack project starter",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server",
"dev": "webpack-dashboard -t 'Bilyeli' -- webpack-dev-server",
"build": "rm -rf ./build && NODE_ENV=\"production\" webpack",
"preview": "rm -rf ./build && NODE_ENV=\"production\" webpack-dashboard -t 'Preview Mode' -- webpack-dev-server",
"test": "jest --coverage",
"storybook": "start-storybook -p 8081 -c .storybook",
"build:storybook": "build-storybook -c .storybook -o .storybook-out"
},
"repository": "https://github.com/ilkeryilmaz/bilyeli.git",
"keywords": [
"react",
"redux",
"webpack",
"scss",
"boilerplate"
],
"author": "ilker Yılmaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilkeryilmaz/bilyeli/issues"
},
"homepage": "https://github.com/ilkeryilmaz/bilyeli",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.6",
"@storybook/addon-links": "^5.0.6",
"@storybook/addons": "^5.0.6",
"@storybook/react": "^5.0.6",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.2.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"react-test-renderer": "^16.8.6",
"sass-loader": "^7.1.0",
"storybook-addon-jsx": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dashboard": "^3.0.2",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"classnames": "^2.2.6",
"immutable": "^4.0.0-rc.12",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.1",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"setupFiles": [
"./test-setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
}
}
}