generated from patrickfrank1/express-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "daily-video-calendar",
"version": "1.0.0",
"description": "A daily video calendar",
"private": true,
"main": "server.js",
"browser": "./docs/index.html",
"engines": {
"node": "12.14.x",
"npm": "6.13.x"
},
"scripts": {
"test": "jest",
"build:dev": "webpack-dev-server --open",
"build:docs": "rm -rf documentation && ./node_modules/.bin/jsdoc -c jsdoc.config.js",
"build:prod": "rm -rf docs && webpack -p --progress",
"heroku-postbuild": "webpack -p --progress && npm run build:docs && npm run cleanup",
"cleanup": "npm prune --production && rm -rf src test .eslintrc.js *.config.js README.md",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickfrank1/daily-video-calendar"
},
"author": "Patrick Frank",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"file-loader": "^5.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"jest": "^25.1.0",
"jsdoc": "^3.6.7",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"express": "^4.17.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9"
}
}