-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "blobs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/schnee72/blobcdnexample"
},
"scripts": {
"prestart": "babel-node buildScripts/startMessage.js",
"start": "npm-run-all --parallel open:src lint:watch",
"open:src": "babel-node buildScripts/srcServer.js",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean-dist lint",
"build": "babel-node buildScripts/build.js",
"postbuild": "babel-node buildScripts/distServer.js",
"srvbuild": "babel-node buildScripts/build.js"
},
"author": "Dustin Schnee",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"chalk": "^4.1.0",
"compression": "^1.7.0",
"css-loader": "^0.28.4",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.7.0",
"eslint-watch": "^6.0.1",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "^4.0.2",
"open": "7.2.0",
"rimraf": "^3.0.2",
"style-loader": "^0.23.1",
"webpack": "^3.5.3",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.18.2",
"webpack-md5-hash": "0.0.6"
}
}