forked from alphagov/gds-nodejs-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "gds-nodejs-boilerplate",
"description": "A Node.js project boilerplate for production apps",
"version": "0.0.1",
"private": true,
"license": "MIT",
"engines": {
"node": "10.16.0"
},
"scripts": {
"compile": "grunt generate-assets",
"clean": "grunt clean",
"server": "node ./start.js",
"start": "npm run compile && npm run server",
"watch": "./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"
},
"dependencies": {
"body-parser": "1.18.x",
"compression": "^1.7.4",
"express": "4.16.x",
"govuk-frontend": "^2.13.0",
"lodash": "^4.17.14",
"minimist": "1.2.x",
"morgan": "1.9.x",
"nunjucks": "^3.2.0",
"pino": "^5.12.2",
"serve-favicon": "^2.5.0",
"staticify": "^3.3.1",
"throng": "4.0.x"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"chokidar-cli": "latest",
"envfile": "^3.0.0",
"eslint": "^6.0.1",
"grunt": "^1.0.4",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.5.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"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",
"mocha": "^6.1.3",
"nock": "^10.0.6",
"node-sass": "^4.12.0",
"sass-lint": "^1.13.1",
"standard": "^13.0.2",
"supertest": "^4.0.2"
}
}