forked from catapultcx/animals-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "@catapult/gov.uk-express",
"version": "0.0.1",
"type": "module",
"scripts": {
"test-ci": "NODE_OPTIONS=--experimental-vm-modules jest --ci --coverage --forceExit",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --ci --coverage --forceExit",
"start": "gulp build && nodemon ./src/bin/www",
"run": "nodemon ./src/bin/www"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "js,yaml,html,njk"
},
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-form-data": "^2.0.18",
"govuk-frontend": "^4.1.0",
"http-errors": "^2.0.0",
"nunjucks": "^3.2.3",
"superagent": "^7.1.3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-nodemon": "^2.5.0",
"gulp-sass": "^5.1.0",
"jest": "^28.1.0",
"mocha": "^10.0.0",
"mocha-sonar-generic-test-coverage": "0.0.6",
"node-sass": "^7.0.1",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"sass": "^1.52.1",
"supertest": "^6.2.3"
}
}