This repository was archived by the owner on Apr 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.38 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.38 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
{
"name": "app",
"version": "0.0.0",
"private": true,
"scripts": {
"buildJs": "gulp build",
"clean": "gulp cleanDist",
"babel-node": "babel-node --presets=es2015",
"nodemon": "nodemon -e pug,js,css --exec npm run babel-node -- src/bin/www",
"start": "npm run buildJs && npm run buildSass && concurrently --kill-others \"npm run watchSass\" \"gulp watchJs\" \"npm run nodemon\"",
"build": "babel src -d dist --presets=es2015 --copy-files --ignore sass/*,public/stylesheets/*,frontEndJS/*,public/js/*,public/showcase/* && gulp moveLargeAssets",
"copyLarge": "cp /src/public/showcase /dist/public/showcase",
"deployProduction": "npm run clean && npm run buildSass && gulp buildProd && gulp buildCssProd && npm run build",
"mocha": "mocha --compilers js:babel-register",
"buildSass": "node-sass src/sass -o src/public/stylesheets",
"watchSass": "node-sass -w src/sass -o src/public/stylesheets",
"buildSassProd": "node-sass src/sass -o dist/public/stylesheets --output-style compressed",
"production": "npm run deployProduction && npm run runProduction",
"runProduction": "node dist/bin/www",
"test": "mocha --exit --timeout 10000 --compilers js:babel-register"
},
"dependencies": {
"body-parser": "~1.18.2",
"bootstrap": "^4.1.1",
"bunyan": "^1.8.12",
"config": "^1.30.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "^4.16.0",
"express-sanitizer": "^1.0.4",
"jquery": "3.2.1",
"mongoose": "^5.1.0",
"morgan": "~1.9.0",
"page": "^1.8.6",
"popper.js": "^1.14.1",
"pug": "2.0.3",
"serve-favicon": "~2.4.5",
"smooth-scroll": "^12.1.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-watch": "^2.0.7",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"concurrently": "^3.5.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^3.9.4",
"gulp-concat": "^2.6.1",
"gulp-copy": "^1.1.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"lodash.assign": "^4.2.0",
"md5": "^2.2.1",
"mocha": "^5.1.1",
"node-sass": "^4.9.0",
"nodemon": "^1.17.4",
"snyk": "^1.80.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.0"
}
}