-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.59 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
{
"name": "express-prototype",
"description": "GOVUK prototyping app in Express",
"version": "3.0.0",
"private": true,
"engines": {
"node": "8.1.2"
},
"scripts": {
"start": "node server.js",
"restart": "npm install && npm start",
"dev": "grunt",
"lint": "standard",
"test": "mocha test --require test-config.js --reporter spec",
"postinstall": "grunt generate-assets"
},
"dependencies": {
"basic-auth": "^1.1.0",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.17.2",
"browser-sync": "^2.18.12",
"check-node-version": "^3.2.0",
"consolidate": "^0.14.5",
"express": "^4.15.3",
"express-nunjucks": "^0.9.3",
"express-session": "^1.15.3",
"express-writer": "0.0.4",
"font-awesome": "^4.7.0",
"govuk-elements-sass": "^3.1.0",
"govuk_frontend_toolkit": "^6.0.3",
"govuk_template_jinja": "^0.22.2",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-nodemon": "^0.4.2",
"grunt-sass": "^2.0.0",
"grunt-sync": "^0.6.2",
"hogan.js": "^3.0.2",
"lodash": "^4.17.5",
"minimist": "^1.2.0",
"moment": "^2.18.1",
"multer": "^1.3.0",
"portscanner": "^2.1.1",
"prompt": "^1.0.0",
"q": "^1.5.0",
"readdir": "0.0.13",
"serve-favicon": "^2.4.3",
"sprintf": "^0.1.5",
"standard": "^10.0.2",
"superagent": "^3.5.2"
},
"devDependencies": {
"chai": "^4.0.2",
"mocha": "^3.4.2",
"proxyquire": "^1.8.0",
"sinon": "^2.3.5",
"sinon-stub-promise": "^4.0.0",
"supertest": "^3.0.0"
}
}