-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.43 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
{
"name": "@netgen/layouts-core",
"description": "Netgen Layouts core",
"version": "1.4.0",
"repository": {
"type": "git",
"url": "https://github.com/netgen-layouts/layouts-core.git"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^17.1.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"file-loader": "^5.0.2",
"mini-css-extract-plugin": "^0.8.1",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"react-dev-utils": "^10.1.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.2",
"terser-webpack-plugin": "^2.3.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@netgen/content-browser-ui": "link:vendor/netgen/content-browser-ui",
"file-saver": "^2.0.2",
"flatpickr": "^4.6.3",
"normalize-scss": "^7.0.1",
"sortablejs": "^1.10.1",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"admin:dev": "webpack --mode=development --config webpack.config.admin.js",
"admin:prod": "webpack --mode=production --config webpack.config.admin.js",
"admin:watch": "webpack --mode=development --config webpack.config.admin.js --watch",
"dev": "webpack --mode=development",
"prod": "webpack --mode=production",
"watch": "webpack --mode=development --watch"
},
"browserslist": {
"defaults": [
"last 2 versions",
"Safari >= 10",
"iOS >= 10",
"not ie <= 10",
"> 1%"
],
"evergreen": [
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Firefox versions",
"last 2 FirefoxAndroid versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Edge versions",
"last 2 Opera versions"
]
}
}