forked from hepsiburada/VoltranJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.5 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
{
"name": "voltranjs",
"version": "1.0.2",
"main": "src/index.js",
"author": "Hepsiburada Technology Team",
"bin": {
"voltran": "./bin/voltran.js"
},
"engines": {
"node": ">= 10.15.0",
"npm": ">=6.4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/hepsiburada/VoltranJS"
},
"dependencies": {
"@babel/core": "7.10.4",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-numeric-separator": "7.10.4",
"@babel/plugin-proposal-optional-chaining": "7.10.4",
"@babel/plugin-proposal-throw-expressions": "7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "7.10.4",
"@babel/polyfill": "7.10.4",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/runtime": "^7.11.2",
"@researchgate/react-intersection-observer": "1.0.3",
"arg": "^4.1.3",
"assets-webpack-plugin": "3.8.4",
"async": "^3.2.0",
"autoprefixer": "9.3.1",
"axios": "0.19.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.6",
"classnames": "2.2.6",
"clean-webpack-plugin": "1.0.0",
"cli-color": "^2.0.0",
"compose-middleware": "5.0.0",
"compression": "^1.7.4",
"cookie-parser": "1.4.3",
"copy-webpack-plugin": "4.5.2",
"css-loader": "1.0.1",
"eev": "0.1.5",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.14.3",
"esm": "^3.2.25",
"file-loader": "1.1.11",
"helmet": "3.21.3",
"hiddie": "^1.0.0",
"husky": "^3.1.0",
"identity-obj-proxy": "3.0.0",
"intersection-observer": "0.7.0",
"js-cookie": "^2.2.1",
"lodash": "4.17.19",
"mini-css-extract-plugin": "0.4.4",
"newrelic": "^6.13.0",
"node-sass": "4.14.1",
"optimize-css-assets-webpack-plugin": "5.0.1",
"pixrem": "4.0.1",
"pleeease-filters": "4.0.0",
"postcss": "7.0.5",
"postcss-inline-svg": "3.1.1",
"postcss-loader": "3.0.0",
"prettier": "1.18.2",
"prom-client": "12.0.0",
"prop-types": "15.6.2",
"query-string": "6.10.1",
"react": "16.12.0",
"react-autosuggest": "9.4.3",
"react-dom": "16.12.0",
"react-hot-loader": "^4.12.18",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"rimraf": "2.6.2",
"sass-loader": "7.1.0",
"sass-resources-loader": "2.0.1",
"serve-static": "1.14.1",
"source-map-support": "^0.5.19",
"string-replace-loader": "^2.3.0",
"style-loader": "0.23.1",
"styled-components": "^5.1.0",
"svg-url-loader": "2.3.2",
"terser-webpack-plugin": "2.3.5",
"url-loader": "1.0.1",
"webpack": "4.25.1",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.1.0",
"webpack-dev-middleware": "3.4.0",
"webpack-hot-middleware": "2.24.3",
"webpack-hot-server-middleware": "0.5.0",
"webpack-merge": "4.1.3",
"webpack-node-externals": "1.7.2",
"whatwg-fetch": "2.0.4",
"xss": "^1.0.8"
},
"devDependencies": {
"response-time": "^2.3.2"
},
"scripts": {
"lint": "npm run eslint && npm run prettier",
"eslint": "eslint 'src/**/*.js' --fix",
"prettier": "prettier --write 'src/**/*.{js,scss}' --config .prettierrc.json",
"start": "voltran --config ./demo/voltran-app.config.js --dev",
"serve": "voltran --config ./demo/voltran-app.config.js"
}
}