-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.95 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"private": true,
"name": "webapp-boilerplate",
"version": "0.1.0",
"description": "Scaffold out a front-end web app using Webpack, Express.js, and others",
"license": "MIT @ Radu Micu",
"author": "Radu Micu",
"engines": {
"node": ">=12.15",
"npm": ">=6"
},
"keywords": [
"web",
"app",
"front-end",
"h5bp",
"modernizr",
"jquery",
"webpack",
"boilerplate",
"starter",
"web starter",
"pwa",
"progressive"
],
"scripts": {
"taskrunner": "cross-env NODE_ENV=development node scripts/run.js",
"dev": "cross-env NODE_ENV=development node scripts/run.js dev",
"dev:verbose": "npm run dev -- --verbose",
"dev:analyze": "npm run dev -- --analyze",
"dev:lint": "npm run taskrunner -- lint",
"build": "cross-env NODE_ENV=production node scripts/run.js build",
"build:release": "cross-env NODE_ENV=production node scripts/run.js build --release",
"build:analyze": "npm run build -- --analyze",
"analyze:bundle-buddy": "npx bundle-buddy build/static/scripts/*.map",
"analyze:slow-deps": "npx slow-deps",
"type-check": "tsc --noEmit",
"test:scripts": "ava",
"commit": "git-cz"
},
"dependencies": {
"@babel/runtime": "7.14.6",
"body-parser": "1.19.0",
"chalk": "4.1.1",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"dotenv": "8.2.0",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-rate-limit": "5.1.3",
"express-session": "1.17.1",
"helmet": "3.22.0",
"joi": "14.3.1",
"lit-html": "1.2.1",
"lodash": "4.17.21",
"log-process-errors": "6.1.1",
"lusca": "1.6.1",
"marko": "4.21.10",
"mime": "2.4.6",
"morgan": "1.10.0",
"pretty-error": "2.2.0-rc.1",
"raven-js": "3.27.2",
"response-time": "2.3.2",
"server-timing": "3.2.1",
"sirv": "0.4.6",
"spdy": "4.0.2",
"time-stamp": "2.2.0",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/preset-env": "7.14.7",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/prompt": "8.3.5",
"@radum/eslint-config": "3.0.0",
"@radum/stylelint-config": "2.0.0",
"@webscaffold/task-browser-sync": "0.1.0-alpha.7",
"@webscaffold/task-clean": "0.1.0-alpha.13",
"@webscaffold/task-copy": "0.1.0-alpha.11",
"@webscaffold/task-core": "0.1.0-alpha.13",
"@webscaffold/task-css-compiler": "0.1.0-alpha.11",
"@webscaffold/task-js-compiler": "0.1.0-alpha.7",
"@webscaffold/task-watcher": "0.1.0-alpha.7",
"assets-webpack-plugin": "3.9.12",
"ava": "3.8.2",
"babel-loader": "8.1.0",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"commitizen": "4.1.2",
"compression-webpack-plugin": "4.0.0",
"core-js": "3.6.5",
"cross-env": "7.0.2",
"directory-named-webpack-plugin": "4.0.1",
"emittery": "0.7.0",
"eslint": "7.30.0",
"eslint-formatter-pretty": "3.0.1",
"execa": "4.0.2",
"figures": "3.2.0",
"html-webpack-plugin": "4.3.0",
"husky": "4.2.5",
"meow": "7.0.1",
"nodemon": "2.0.4",
"os": "0.1.1",
"pnp-webpack-plugin": "1.6.4",
"prettier": "2.0.5",
"raw-loader": "4.0.1",
"sass-mq": "5.0.1",
"size-plugin": "2.0.1",
"stack-trace": "0.0.10",
"stack-utils": "2.0.2",
"stylelint": "13.6.0",
"stylelint-formatter-pretty": "2.1.0",
"terser-webpack-plugin": "3.0.3",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "3.8.0",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.0",
"webpack-monitor": "1.0.14",
"workbox-webpack-plugin": "5.1.3",
"write-file-webpack-plugin": "4.5.1"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/prompt"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}