-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.39 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
{
"name": "stakeholder-engagement-frontend",
"description": "Stakeholder Engagement Service frontend",
"version": "0.0.1",
"private": true,
"license": "MIT",
"engines": {
"node": ">11.6.0"
},
"scripts": {
"compile": "grunt generate-assets",
"clean": "grunt clean",
"server": "node ./start.js",
"start": "npm run compile && npm run server",
"watch": "chokidar app test *.js --initial -c 'npm run test'",
"watch-live-reload": "./node_modules/.bin/grunt watch",
"lint-sass": "./node_modules/.bin/sass-lint -v",
"test": "standard && node ./node_modules/mocha/bin/mocha '!(node_modules)/**/*+(.test|.tests)'.js",
"snyk-protect": "./node_modules/.bin/snyk protect",
"prepublish": "npm run snyk-protect",
"heroku-postbuild": "npm run compile"
},
"dependencies": {
"body-parser": "1.18.x",
"client-sessions": "0.8.x",
"compression": "1.7.x",
"devour-client": "^2.0.15",
"dotenv": "^6.2.0",
"express": "4.16.x",
"express-session": "^1.15.6",
"govuk-frontend": "^2.7.0",
"i18n": "0.8.x",
"joi": "^14.3.1",
"lodash": "^4.17.4",
"minimist": "1.2.x",
"morgan": "1.9.x",
"nunjucks": "^3.0.1",
"passport": "^0.4.0",
"passport-auth0": "^1.1.0",
"pino": "^5.11.1",
"readdir": "^0.1.0",
"requestretry": "^3.1.0",
"serve-favicon": "^2.5.0",
"staticify": "^3.2.0",
"throng": "4.0.x"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "8.0.x",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.1",
"chokidar-cli": "latest",
"envfile": "^3.0.0",
"eslint": "^5.14.1",
"grunt": "^1.0.3",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "2.3.x",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "0.4.x",
"grunt-mocha-test": "^0.13.2",
"grunt-nodemon": "0.4.x",
"grunt-rewrite": "1.0.x",
"grunt-sass": "^3.0.2",
"jquery": "^3.2.1",
"mocha": "^6.0.2",
"nock": "^10.0.6",
"node-sass": "^4.11.0",
"nunjucksify": "^2.2.0",
"rfc822-validate": "^1.0.0",
"sass-lint": "^1.10.2",
"snyk": "^1.134.2",
"standard": "^12.0.1",
"supertest": "^3.4.2"
},
"snyk": true
}