-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
131 lines (131 loc) · 3.97 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
121
122
123
124
125
126
127
128
129
130
131
{
"name": "voltranjs",
"version": "1.1.9",
"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.16.10",
"@babel/eslint-parser": "7.16.5",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-numeric-separator": "7.16.7",
"@babel/plugin-proposal-optional-chaining": "7.16.7",
"@babel/plugin-proposal-throw-expressions": "7.16.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/plugin-transform-runtime": "7.16.10",
"@babel/preset-env": "7.16.10",
"@babel/preset-react": "7.16.7",
"@babel/runtime": "7.16.7",
"@researchgate/react-intersection-observer": "1.0.3",
"arg": "^4.1.3",
"assets-webpack-plugin": "7.1.1",
"async": "^3.2.0",
"autoprefixer": "9.3.1",
"axios": "0.21.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"classnames": "2.2.6",
"clean-webpack-plugin": "4.0.0",
"cli-color": "2.0.2",
"compose-middleware": "5.0.1",
"compression": "^1.7.4",
"cookie-parser": "1.4.3",
"copy-webpack-plugin": "4.5.2",
"core-js": "3.20.3",
"css-loader": "6.5.1",
"css-minimizer-webpack-plugin": "3.4.1",
"eev": "0.1.5",
"esbuild-loader": "2.19.0",
"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",
"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",
"mini-css-extract-plugin": "2.5.2",
"newrelic": "^9.1.0",
"node-sass": "9.0.0",
"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.14.0",
"react-dom": "16.14.0",
"react-hot-loader": "4.13.0",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"regenerator-runtime": "^0.13.9",
"rimraf": "3.0.2",
"sass-loader": "12.4.0",
"serve-static": "1.14.1",
"source-map-support": "0.5.21",
"string-replace-loader": "3.1.0",
"style-loader": "3.3.1",
"styled-components": "5.1.0",
"svg-url-loader": "7.1.1",
"terser-webpack-plugin": "5.3.1",
"webpack": "5.65.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.1",
"webpack-dev-middleware": "3.7.3",
"webpack-hot-middleware": "2.25.1",
"webpack-hot-server-middleware": "0.6.1",
"webpack-merge": "5.8.0",
"webpack-node-externals": "3.0.0",
"whatwg-fetch": "2.0.4",
"xss": "^1.0.8"
},
"devDependencies": {
"auto-changelog": "^2.2.1",
"babel-jest": "^23.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"jest": "^26.6.3",
"sass-resources-loader": "2.2.5"
},
"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",
"test": "jest",
"test:watchAll": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:updateSnapshot": "jest --updateSnapshot",
"version": "auto-changelog"
},
"auto-changelog": {
"commitLimit": false,
"template": "changelog-template.hbs",
"package": true
}
}