This repository has been archived by the owner on Oct 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 2.99 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "bigenc",
"version": "0.0.1",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "webpack --env.build --env.sourceMap",
"start": "webpack-dev-server --env.port=3000",
"test": "jest --color"
},
"babel": {
"plugins": [
"react-hot-loader/babel",
[
"lodash",
{
"id": [
"lodash",
"recompose",
"semantic-ui-react"
]
}
]
],
"presets": [
[
"env",
{
"modules": false
}
],
"react"
],
"env": {
"production": {
"presets": [
"react-optimize"
]
},
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"browserslist": [
"> 5%",
"last 2 versions"
],
"jest": {
"setupFiles": [
"./jest.setup.js"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.23.0",
"babel-preset-react-optimize": "^1.0.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.4",
"jest-enzyme": "^6.0.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"react-test-renderer": "^16.4.0",
"resolve-url-loader": "^2.3.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.10",
"postcss": "^6.0.22",
"postcss-cssnext": "^3.1.0",
"postcss-modules-values": "^1.3.0",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.7",
"recompose": "^0.27.1",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.80.0",
"styled-components": "^2.4.0"
}
}