-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.63 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
{
"name": "Express-Workbox-Webpack-Babel-Scaffolding",
"version": "1.0.0",
"main": "/public/server-bundled.js",
"author": "Hugh Caluscusin",
"license": "MIT",
"scripts": {
"clean:dir": "shopt -s extglob && find ./public/build -mindepth 1 -maxdepth 1 -not -name 'views' -exec rm -fr {} \\+ && shopt -u extglob;",
"prep": "rimraf .git && mkdir ./public/build && yarn start:dev-ar",
"ngrok": "node .ngrok.js",
"ls": "light-server -c .lightrc",
"build:dev": "webpack --config ./webpack.config.js --mode development",
"build:dev-watch": "webpack --config ./webpack.config.js --mode development --watch true",
"build:production": "webpack --config ./webpack.config.js --mode production",
"test": "jest",
"start:dev-ar": "yarn clean:dir && yarn build:dev && yarn test && concurrently 'yarn build:dev-watch' 'yarn start' 'yarn ngrok' 'yarn ls'",
"start:dev": "yarn clean:dir && yarn build:dev && yarn test && yarn start",
"start": "node ./public/server-bundled.js"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
],
"dependencies": {
"@babel/runtime": "^7.5.5",
"@iconify/iconify": "^1.0.3",
"express": "^4.17.1",
"express-es6-template-engine": "^2.1.9",
"jquery": "^3.4.1",
"materialize-css": "^1.0.0-rc.2",
"workbox-window": "^4.3.1"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.4",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"browser-refresh": "^1.7.3",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.1",
"css-loader": "^3.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"light-server": "^2.6.3",
"mini-css-extract-plugin": "^0.7.0",
"ngrok": "^3.2.5",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.17",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"superagent": "^5.1.0",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^1.4.1",
"webpack": "^4.35.3",
"webpack-auto-clean-build-plugin": "^1.0.4",
"webpack-cli": "^3.3.5",
"webpack-node-externals": "^1.7.2",
"workbox-webpack-plugin": "^4.3.1"
}
}