-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.1 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
{
"name": "objectively-express-boilerplate",
"version": "0.0.0",
"private": true,
"engines": {
"node": "v16.14.0",
"npm": "8.3.1"
},
"scripts": {
"build": "webpack & npm run scss",
"start": "node ./bin/www",
"dev": "nodemon ./bin/www & npm run build",
"test": "nyc --reporter=html --reporter=text mocha $(find test -name '*.js')",
"lint": "eslint ./client/**/*.js",
"lint-server": "eslint ./app.js ./services/*.js ./controllers/*.js ./models/*.js ./helpers/*.js ./routes/*.js",
"prettier": "prettier --config ./.prettierrc --write ./client/**/*.js",
"scss": "sass ./sass/stylesheets/styles.scss ./public/stylesheets/styles.css"
},
"dependencies": {
"babel-loader": "^9.1.2",
"babelify": "^10.0.0",
"basic-auth": "^2.0.1",
"body-parser": "~1.19.0",
"browser-sync": "^2.26.14",
"browserify-middleware": "^8.1.1",
"compression": "^1.7.4",
"connect-browser-sync": "^2.1.0",
"contentful": "^8.3.5",
"contentful-management": "^10.30.0",
"cookie-parser": "^1.4.5",
"debug": "^4.3.1",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.1",
"express-minify": "^1.0.0",
"express-minify-html": "github:objectively/express-minify-html",
"express-sanitizer": "^1.0.6",
"express-validator": "^6.1.1",
"helmet": "^3.22.0",
"jquery": "^3.5.0",
"marked": "^4.0.10",
"morgan": "~1.9.1",
"recaptcha2": "^1.3.3",
"sass": "^1.58.3",
"serve-favicon": "^2.5.0",
"sinon": "^7.3.2",
"supertest": "^4.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"chai": "^4.3.4",
"jsdom": "^16.5.3",
"jshint": "^2.12.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"source-map-support": "^0.5.12"
}
}