-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.46 KB
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
{
"name": "odjazdy-mpk",
"scripts": {
"build": "webpack --config config/webpack/production.js",
"clean": "del build/",
"lint": "npm run lint-js",
"lint-js": "eslint --config config/eslint.json src/ *.js",
"start": "webpack-dev-server --config config/webpack/development.js --inline --hot --content-base build/",
"test": "webpack --config config/webpack/testing.js && node build/tests/index.js | faucet",
"travis": "npm run build && npm run lint"
},
"dependencies": {
"@babel/preset-es2015": "^7.0.0-beta.53",
"autoprefixer": "^9.6.0",
"babel-plugin-transform-async-functions": "^6.22.0",
"es6-promise": "^4.2.5",
"es6-shim": "^0.35.5",
"fastdom": "^1.0.9",
"hyperscript": "^2.0.2",
"hyperx": "^2.4.0",
"localforage": "^1.7.1",
"ramda": "^0.25.0",
"tape": "^4.9.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"universal-router": "^4.3.0",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.4.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.0.0",
"csso-webpack-plugin": "^2.0.0-beta.1",
"del-cli": "^0.2.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"faucet": "0.0.1",
"file-loader": "^0.10.1",
"glob": "^7.1.1",
"gulp": "^4.0.0",
"gulp-css-base64": "^1.3.4",
"gulp-csso": "^3.0.1",
"gulp-dart-sass": "^0.9.1",
"gulp-replace": "^1.0.0",
"gulp-rev": "^8.1.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.16.0",
"url-loader": "^1.1.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.7.1"
},
"config": {
"title": "MPK Rzeszów"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"chrome": "30"
}
}
]
],
"plugins": [
"transform-async-to-generator"
]
}
}