This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
117 lines (117 loc) · 3.85 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "node-starter-app",
"version": "6.1.0",
"description": "",
"author": "CDS",
"license": "MIT",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"debug": "webpack --config webpack.dev.js && cross-env NODE_ENV=development nodemon --inspect-brk ./bin/www",
"debug:dist": "webpack --config webpack.dev.js && cross-env NODE_ENV=development node --inspect ./bin/www",
"dev": "cross-env nodemon --exec npm run dev:dist",
"dev:dist": "webpack --config webpack.dev.js && cross-env NODE_ENV=development node ./bin/www",
"start": "npm run build && cross-env NODE_ENV=production node ./bin/www",
"lint": "node node_modules/eslint/bin/eslint.js config utils routes bin/www app.js",
"lint:locales": "npx jsonlint -q ./locales/en.json && npx jsonlint -q ./locales/fr.json",
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"test": "node node_modules/jest/bin/jest.js --coverage",
"test:server": "cross-env nodemon --exec npm run test:server:start",
"test:server:start": "webpack --config webpack.dev.js && cross-env NODE_ENV=test node ./bin/www",
"test:watch": "node node_modules/jest/bin/jest.js --watch",
"cypress:run:test": "NODE_ENV=test cypress run",
"aws": "cd cdk && cdk synth && node deploy",
"aws-bootstrap": "node cdk/bootstrap.js",
"aws-destroy": "node cdk/destroy.js",
"comb": "jsoncomb --normalise \"./locales/*.json\"",
"cypress:open": "node ./node_modules/.bin/cypress open",
"postinstall": "patch-package",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@csstools/postcss-sass": "^4.0.0",
"accessible-autocomplete": "^2.0.2",
"applicationinsights": "^1.7.6",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cookie-session": "^1.3.3",
"copy-template-dir": "^1.4.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"csurf": "^1.10.0",
"date-fns": "^2.14.0",
"details-polyfill": "^1.1.0",
"dotenv": "^8.2.0",
"dynamoose": "^1.11.1",
"express": "~4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.5.0",
"glob": "^7.1.6",
"helmet": "^3.21.2",
"i18n": "^0.10.0",
"jquery": "^3.5.1",
"mini-css-extract-plugin": "^0.9.0",
"morgan": "^1.10.0",
"notifications-node-client": "^4.7.3",
"nunjucks": "^3.2.0",
"postcss-loader": "^3.0.0",
"request": "^2.88.0",
"snyk": "^1.329.0",
"tailwindcss": "^1.4.6",
"uuid": "^7.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"@aws-cdk/aws-docdb": "1.32.0",
"@aws-cdk/aws-ec2": "1.32.0",
"@aws-cdk/aws-ecs": "1.32.0",
"@aws-cdk/aws-ecs-patterns": "1.32.0",
"@aws-cdk/core": "1.32.0",
"@cdssnc/a11y-tracker-client": "^1.1.2",
"acorn": "^7.2.0",
"cheerio": "^1.0.0-rc.3",
"cypress": "^4.6.0",
"cypress-axe": "^0.8.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"fse": "^4.0.1",
"husky": "^4.2.5",
"jest": "^25.5.4",
"json-comb": "^0.2.54",
"nodemon": "^2.0.4",
"patch-package": "^6.2.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0",
"webpack-notifier": "^1.8.0"
},
"nodemonConfig": {
"ext": "js,json,njk,scss",
"ignore": [
"public/dist/**/*.*",
"cypress/**/*.*"
]
},
"snyk": true
}