-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 1.83 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
{
"name": "hyperbolts-compiler",
"description": "Opinionated bundler, asset compiler and watcher with React hot-loading",
"homepage": "https://hyperbolts.io",
"version": "1.1.0",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hyperbolts/compiler.git"
},
"bugs": {
"url": "https://github.com/hyperbolts/compiler/issues"
},
"keywords": [
"hyperbolts",
"bundler",
"compiler",
"react",
"hot-loading",
"hot-loader",
"hot",
"loader",
"loading",
"webpack",
"browsersync",
"babel",
"gulp",
"sass"
],
"author": {
"name": "Pace IT Systems Ltd",
"email": "info@paceit.co.uk",
"url": "https://www.paceit.co.uk"
},
"files": [
"dist",
"gulpfile.example.js",
"header.txt",
"LICENSE.md"
],
"scripts": {
"build": "babel src -d dist",
"lint": "eslint ."
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.24.6",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"chokidar": "^2.0.4",
"del": "^3.0.0",
"event-stream": "^3.3.4",
"gulp-clean-css": "^3.10.0",
"gulp-imagemin": "^4.1.0",
"gulp-notify": "^3.2.0",
"gulp-rev": "^8.1.1",
"gulp-rev-delete-original": "^0.2.3",
"gulp-rev-replace": "^0.4.4",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"hard-source-webpack-plugin": "^0.12.0",
"react-hot-loader": "^4.3.5",
"run-sequence": "^2.2.1",
"webpack": "^4.17.1",
"webpack-dev-middleware": "^3.1.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"eslint": "^5.4.0",
"eslint-config-hyperbolts": "^1.0.24",
"gulp": "^3.9.1"
},
"babel": {
"presets": [
"env"
]
}
}