-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
100 lines (100 loc) · 2.9 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "tiiny-host-api",
"description": "A Node.js project boilerplate for production apps",
"version": "0.0.1",
"private": true,
"license": "MIT",
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"compile": "grunt generate-assets",
"clean": "grunt clean",
"start": "nodemon --exec ./node_modules/.bin/babel-node ./start.js | pino-pretty",
"server": "node ./start.js",
"build": "babel . --ignore node_modules,dist --out-dir dist --copy-files",
"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": "node ./node_modules/mocha/bin/mocha \"!(node_modules)/**/*+(.test|.tests)\".js",
"snyk-protect": "./node_modules/.bin/snyk protect",
"script": "nodemon --exec babel scripts/index.js",
"lint": "eslint ."
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development"
}
},
"dependencies": {
"@analytics/google-analytics": "^0.2.2",
"analytics": "^0.3.5",
"async-retry": "^1.3.3",
"aws-sdk": "^2.960.0",
"axios": "^0.21.4",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"decompress": "^4.2.1",
"dotenv": "^10.0.0",
"express": "4.16.x",
"express-prom-bundle": "^6.4.1",
"express-useragent": "^1.0.15",
"fs": "^0.0.1-security",
"govuk-frontend": "^2.13.0",
"jsonwebtoken": "^8.5.1",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"morgan": "1.9.x",
"multer": "^1.4.5-lts.1",
"multiparty": "^4.2.2",
"node-stream-zip": "^1.15.0",
"nodemailer": "^6.6.3",
"nodemon": "^1.19.4",
"php-serialize": "^4.0.2",
"pino": "^6.13.1",
"pino-http": "^5.7.0",
"pino-pretty": "^7.1.0",
"prom-client": "^14.0.1",
"psl": "^1.8.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"s3-zip": "^3.2.0",
"staticify": "^3.3.4",
"stripe": "^8.167.0",
"unique-names-generator": "^4.6.0",
"uuid": "^3.4.0",
"xml-stream": "^0.4.5"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"chai": "^4.3.4",
"chokidar-cli": "latest",
"envfile": "^6.17.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"mocha": "^6.2.3",
"nock": "^10.0.6",
"node-sass": "^4.14.1",
"sass-lint": "^1.13.1",
"snyk": "^1.720.0",
"standard": "^12.0.1",
"supertest": "^6.1.6"
},
"snyk": true
}